.technical-page {
  background:
    radial-gradient(circle at 78% 0, rgba(134, 84, 255, .18), transparent 34%),
    linear-gradient(180deg, #0d0b18, var(--bg) 380px);
}

.technical-hero {
  min-height: 58vh;
  padding: 86px 0 110px;
}

.technical-article {
  max-width: 920px;
  margin: 0 auto;
}

.technical-header {
  margin-bottom: 32px;
}

.technical-header h1 {
  max-width: 820px;
  margin: 12px 0 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.technical-content {
  padding: 38px 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(23, 20, 35, .96), rgba(16, 14, 25, .96));
  box-shadow: var(--shadow);
  color: #d9d5e3;
  font-size: 16px;
  line-height: 1.78;
}

.technical-content > *:first-child {
  margin-top: 0;
}

.technical-content > *:last-child {
  margin-bottom: 0;
}

.technical-content h2,
.technical-content h3,
.technical-content h4 {
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0;
}

.technical-content h2 {
  margin: 36px 0 14px;
  font-size: 30px;
}

.technical-content h3 {
  margin: 28px 0 12px;
  font-size: 22px;
}

.technical-content p,
.technical-content ul,
.technical-content ol,
.technical-content table,
.technical-content blockquote {
  margin: 0 0 18px;
}

.technical-content ul,
.technical-content ol {
  padding-left: 24px;
}

.technical-content li {
  margin: 8px 0;
}

.technical-content a {
  color: #c9abff;
  font-weight: 750;
  border-bottom: 1px solid rgba(201, 171, 255, .38);
}

.technical-content blockquote {
  padding: 18px 22px;
  border-left: 3px solid var(--primary);
  border-radius: 0 14px 14px 0;
  background: rgba(134, 84, 255, .08);
  color: #eeeaf7;
}

.technical-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.technical-content th,
.technical-content td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.technical-content th {
  color: var(--text);
  background: rgba(134, 84, 255, .14);
}

.technical-content tr:last-child th,
.technical-content tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 640px) {
  .technical-hero {
    padding: 58px 0 78px;
  }

  .technical-header {
    margin-bottom: 24px;
  }

  .technical-header h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .technical-content {
    padding: 24px 18px;
    border-radius: 18px;
    font-size: 15px;
  }

  .technical-content h2 {
    font-size: 25px;
  }

  .technical-content table {
    display: block;
    overflow-x: auto;
  }
}
