@property --card-h {
  syntax: '<number>';
  inherits: false;
  initial-value: 240;
}
@property --card-s {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 18%;
}
@property --card-l {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 9%;
}
@property --card-a {
  syntax: '<number>';
  inherits: false;
  initial-value: 1;
}

.section {
  scroll-margin-top: var(--header-height);
}

.section-head {
  max-width: 720px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-subtitle {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--color-body);
  max-width: 640px;
}

.section-head--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.card {
  position: relative;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 100%;
  --card-h: 240;
  --card-s: 18%;
  --card-l: 9%;
  --card-a: 1;
  background: hsla(var(--card-h), var(--card-s), var(--card-l), var(--card-a));
}

.card.card {
  transition:
    opacity 0.6s ease-in,
    transform 0.6s ease-in,
    border-color var(--transition-base),
    --card-h 300ms ease-in,
    --card-s 300ms ease-in,
    --card-l 300ms ease-in,
    --card-a 300ms ease-in;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 24, 255, 0.4);
  --card-h: 0;
  --card-s: 0%;
  --card-l: 0%;
  --card-a: 0.5;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(224, 24, 255, 0.08);
}

.card--gb {
  position: relative;
  border: none;
}

.card--gb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(224, 24, 255, 0.3), rgba(130, 63, 255, 0.15), rgba(255, 255, 255, 0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card--gb:hover {
  border-color: transparent;
}

.card--split {
  display: flex;
  padding: 0;
  overflow: hidden;
}
@media (width < 1200px) {
  .card--split {
    flex-direction: column;
  }
  .card__media {
    height: 200px;
    overflow: hidden;
  }
}

.card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #16091e;
}
@media (width >= 1200px) {
  .card__media,
  .card__body {
    flex: 1 1 50%;
  }
}

.card__media svg,
.card__media img {
  width: 100%;
  display: block;
}

.card--split .card__body {
  padding: var(--space-lg);
}

.section--grid {
  overflow: hidden;
}

.section--grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.section--grid > .container {
  position: relative;
  z-index: 1;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: #16091e;
  margin-bottom: var(--space-md);
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-h5);
  font-weight: 700;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: var(--space-sm);
}

.card--audience {
  overflow: hidden;
  padding-right: 130px;
}

.card.card--audience {
  transition:
    opacity 0.6s ease-in,
    transform 0.6s ease-in,
    border-color var(--transition-base),
    --card-h 300ms ease-in,
    --card-s 300ms ease-in,
    --card-l 300ms ease-in,
    --card-a 300ms ease-in;
}

.card__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 255px;
  height: 100%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%);
  pointer-events: none;
  transition: clip-path ease-in 0.3s;
  overflow: hidden;
}

.card--audience:hover .card__corner {
  clip-path: polygon(10.00% 0px, 100% 0px, 100% 130.95%);
}

.card__corner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  display: block;
}

.card__title {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  color: var(--color-heading);
}

.card__text {
  color: var(--color-body);
  font-size: var(--fs-small);
  line-height: var(--lh-base);
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(224, 24, 255, 0.1);
  border: 1px solid rgba(224, 24, 255, 0.3);
  font-size: var(--fs-small);
  color: var(--color-heading);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(224, 24, 255, 0.08);
}

.icon svg {
  width: 24px;
  height: 24px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 576px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero__video {
  position: absolute;
  top: 0;
  left: -300px;
  width: calc(100% + 300px);
  height: 100%;
  object-fit: cover;
  object-position: calc(50% + 300px) center;
  z-index: 0;
}

.hero__video-fade {
  position: absolute;
  inset: 0 auto 0 0;
  width: 220px;
  z-index: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
  pointer-events: none;
}

.hero__video-fade--top,
.hero__video-fade--bottom {
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
}

.hero__video-fade--top {
  inset: 0 0 auto 0;
  background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 100%);
}

@media (min-width: 1200px) {
  .hero__video {
    left: 0;
    width: 100%;
    object-fit: revert-layer;
    object-position: 100% center;
  }

  .hero__video-fade {
    --gap-x: var(--hero-video-gap-x, clamp(240px, 22vw, 520px));
    width: calc(var(--gap-x) + 70px);
    background: linear-gradient(
      to right,
      var(--color-bg) 0px,
      var(--color-bg) var(--gap-x),
      transparent calc(var(--gap-x) + 70px)
    );
  }

  .hero__video-fade--top,
  .hero__video-fade--bottom {
    --gap-y: var(--hero-video-gap-y, 0px);
    height: calc(var(--gap-y) + 70px);
  }

  .hero__video-fade--top {
    background: linear-gradient(
      to bottom,
      var(--color-bg) 0px,
      var(--color-bg) var(--gap-y),
      transparent calc(var(--gap-y) + 70px)
    );
  }

  .hero__video-fade--bottom {
    background: linear-gradient(
      to top,
      var(--color-bg) 0px,
      var(--color-bg) var(--gap-y),
      transparent calc(var(--gap-y) + 70px)
    );
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10, 9, 9, 0.5) 0%, var(--color-bg) 90%);
  z-index: 1;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.hero__shape--1 {
  width: 400px;
  height: 400px;
  background: var(--color-accent);
  top: -100px;
  right: -100px;
}

.hero__shape--2 {
  width: 320px;
  height: 320px;
  background: var(--color-accent-2);
  bottom: -80px;
  left: -80px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__badge {
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-body);
  max-width: 560px;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--space-xl);
  row-gap: 0;
}

.about__grid .section-head {
  grid-column: 1;
  grid-row: 1;
}

.about__body {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}

.about__visual {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(130, 63, 255, 0.06);
  border: 1px solid rgba(130, 63, 255, 0.15);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__lead {
  font-size: 1.25rem;
  color: var(--color-heading);
  margin-bottom: var(--space-lg);
}

.about__text {
  color: var(--color-body);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__grid .section-head,
  .about__body,
  .about__visual {
    grid-column: 1;
    grid-row: auto;
  }

  .about__visual {
    align-self: auto;
    order: -1;
    margin-bottom: var(--space-xl);
  }
}

.steps {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
  gap: var(--space-md);
}

.step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  flex-shrink: 0;
}

.step__marker::after {
  content: '';
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(224, 24, 255, 0.6), rgba(130, 63, 255, 0.15));
  margin-bottom: -24px;
}

.step:last-child .step__marker::after {
  display: none;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--color-heading);
  font-weight: 700;
  font-size: var(--fs-small);
  position: relative;
  z-index: 1;
}

.step__card {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  background: #12121a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition-base), transform var(--transition-base);
  flex: 1;
}

.step__card:hover {
  border-color: rgba(224, 24, 255, 0.4);
  transform: translateX(4px);
}

.step__role {
  font-size: var(--fs-h5);
  color: var(--color-heading);
  margin-bottom: var(--space-xs);
}

.step__text {
  color: var(--color-body);
  font-size: var(--fs-small);
  margin: 0;
}

.digital-model__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.digital-model__text p {
  color: var(--color-body);
  margin-bottom: var(--space-md);
}

.digital-model__feature {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.digital-model__feature .icon {
  flex-shrink: 0;
  background: #1a0b22;
}

.digital-model__feature-title {
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.digital-model__feature-text {
  color: var(--color-body);
  font-size: var(--fs-small);
  margin: 0;
}

.digital-model__mockup {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #12121a;
  box-shadow: 0 20px 60px rgba(224, 24, 255, 0.15);
  padding: 12px;
}

@media (min-width: 992px) {
  .digital-model__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.articles-preview__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .articles-preview__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .articles-preview__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  background: #12121a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base);
  height: 100%;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 24, 255, 0.4);
}

.article-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(224, 24, 255, 0.25), rgba(130, 63, 255, 0.25));
  position: relative;
  overflow: hidden;
}

.article-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.article-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card__date {
  font-size: 0.75rem;
  color: var(--color-ternary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.article-card__title {
  font-size: var(--fs-h6);
  color: var(--color-heading);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
  font-weight: 600;
}

.article-card__excerpt {
  color: var(--color-body);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
  flex: 1;
}

.article-card__link {
  color: var(--color-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  align-self: flex-start;
}

.article-card__link:hover {
  color: var(--color-accent);
}

.articles-preview__footer {
  margin-top: var(--space-xl);
  text-align: center;
}

.cta-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 992px) {
  .cta-form__grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.cta-form__lead {
  color: var(--color-body);
  margin-bottom: var(--space-md);
}

.cta-form__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.cta-form__list li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  color: var(--color-body);
  font-size: var(--fs-small);
}

.cta-form__list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-accent);
  margin-top: 2px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / contain no-repeat;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: #12121a;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.form-field label {
  font-size: var(--fs-small);
  color: var(--color-body);
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-heading);
  font-family: inherit;
  font-size: var(--fs-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-ternary);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(224, 24, 255, 0.15);
}

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

.form-field--row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 576px) {
  .form-field--row {
    grid-template-columns: 1fr 1fr;
  }
}

.lead-form__submit {
  margin-top: var(--space-sm);
  align-self: flex-start;
}

.lead-form__policy {
  font-size: 0.75rem;
  color: var(--color-ternary);
  line-height: 1.5;
}

.lead-form__policy a {
  color: var(--color-ternary);
  text-decoration: underline;
}

.lead-form__policy a:hover {
  color: var(--color-accent);
}

.form-error {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: var(--fs-small);
  color: var(--color-accent);
  transition: max-height var(--transition-fast), opacity var(--transition-fast);
}

.form-error.is-visible {
  max-height: 60px;
  opacity: 1;
  margin-top: 4px;
}

.form-field input.is-invalid,
.form-field textarea.is-invalid,
.form-field select.is-invalid {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(224, 24, 255, 0.15);
}

.form-success {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: rgba(224, 24, 255, 0.06);
  border: 1px solid var(--color-accent);
  text-align: left;
}

.form-success[hidden] {
  display: none;
}

.form-success__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / contain no-repeat;
}

.form-success h3 {
  margin-bottom: 4px;
}

.form-success p {
  margin-bottom: 0;
  color: var(--color-body);
}

@media (max-width: 480px) {
  .form-success {
    flex-direction: column;
    text-align: center;
  }
}

.advantages__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 576px) {
  .advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .advantages__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.breadcrumbs {
  padding: var(--space-md) 0 var(--space-lg);
  font-size: var(--fs-small);
  color: var(--color-ternary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

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

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  opacity: 0.55;
}

.breadcrumbs a {
  color: var(--color-body);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs [aria-current="page"] {
  color: var(--color-heading);
}

.page-head {
  margin-bottom: var(--space-xl);
}

.page-title {
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.page-lead {
  color: var(--color-body);
  font-size: 1.125rem;
  max-width: 640px;
}

.article-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .article-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .article-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-page {
  padding: var(--space-lg) 0 var(--space-2xl);
}

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

.article-header {
  margin-bottom: var(--space-lg);
}

.article-header__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.article-header__meta {
  font-size: var(--fs-small);
  color: var(--color-ternary);
}

.article-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-body);
}

.article-body > * + * {
  margin-top: var(--space-md);
}

.article-body h2 {
  font-size: var(--fs-h3);
  color: var(--color-heading);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.article-body h3 {
  font-size: var(--fs-h4);
  color: var(--color-heading);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  line-height: 1.35;
}

.article-body p {
  margin: 0;
}

.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: var(--space-xs);
  padding-left: 4px;
}

.article-body li:last-child {
  margin-bottom: 0;
}

.article-body li::marker {
  color: var(--color-accent);
}

.article-body ul ul,
.article-body ul ol,
.article-body ol ul,
.article-body ol ol {
  margin-top: var(--space-xs);
}

.article-body strong {
  color: var(--color-heading);
  font-weight: 600;
}

.article-body em {
  font-style: italic;
  color: var(--color-body);
}

.article-body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--color-accent-2);
}

.article-body blockquote {
  margin: var(--space-md) 0;
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--color-accent);
  background: rgba(224, 24, 255, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.125rem;
  color: var(--color-heading);
}

.article-body blockquote p {
  margin: 0;
}

.article-back {
  margin-top: var(--space-xl);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
