:root {
  --container: 1180px;
  --radius: 20px;
  --radius-lg: 16px;
  --bg: #f5f7fc;
  --bg2: #ffffff;
  --panel: #ffffff;
  --card: #ffffff;
  --card2: #fbfcff;
  --border: #e5e8f2;
  --border2: #d3d8e8;
  --text: #1b1e2e;
  --muted: #5a627a;
  --muted2: #8b93ab;
  --violet: #6d4aff;
  --cyan: #0891b2;
  --pink: #db2777;
  --green: #059669;
  --grad: linear-gradient(90deg, #6d4aff, #0891b2);
  --grad2: linear-gradient(135deg, #6d4aff 0%, #22b8dd 100%);
  --shadow-sm: 0 2px 10px rgba(27, 30, 46, .06);
  --shadow-md: 0 12px 32px rgba(27, 30, 46, .10);
  --shadow-lg: 0 24px 60px rgba(109, 74, 255, .16);
  --font-h: 'Space Grotesk', sans-serif;
  --font-b: 'Manrope', sans-serif;
  --font-m: 'JetBrains Mono', monospace;
  --background: var(--bg);
  --foreground: var(--text); }

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

html,
body {
  margin: 0;
  padding: 0; }

html {
  scroll-behavior: smooth; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(900px 500px at 85% -10%, rgba(109, 74, 255, 0.1), transparent 60%), radial-gradient(800px 500px at -10% 30%, rgba(8, 145, 178, 0.08), transparent 60%), radial-gradient(700px 600px at 60% 110%, rgba(219, 39, 119, 0.05), transparent 60%), var(--bg); }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .6;
  background-image: linear-gradient(rgba(27, 30, 46, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 30, 46, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 100%); }

::selection {
  background: rgba(109, 74, 255, 0.22); }

img {
  max-width: 100%;
  height: auto;
  display: block; }

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em; }

p {
  margin: 0; }

button {
  font: inherit;
  cursor: pointer; }

input,
textarea,
select {
  font-family: inherit; }

html::-webkit-scrollbar {
  width: 10px; }
html::-webkit-scrollbar-thumb {
  background-color: #c6cbdd;
  border-radius: 10px; }
  html::-webkit-scrollbar-thumb:hover {
    background-color: #a9b0c9; }
html::-webkit-scrollbar-track {
  background: #eef0f8; }

.container {
  width: 100%;
  max-width: var(--container);
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto; }

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px; } }
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--foreground); }

.site__main {
  flex-grow: 1;
  padding-top: 110px; }

.section {
  padding: 64px 0; }

@keyframes pulse {
  0%,
	100% {
    transform: scale(1); }
  50% {
    transform: scale(1.25); } }
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-m);
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.5px; }
  .logo__dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: var(--grad2);
    box-shadow: 0 0 12px rgba(109, 74, 255, 0.5);
    animation: pulse 2.6s infinite; }
  .logo__accent {
    color: var(--cyan); }

.btn {
  border: none;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 26px;
  transition: .25s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  cursor: pointer; }
  .btn--primary {
    background: var(--grad2);
    color: #fff;
    box-shadow: 0 8px 24px rgba(109, 74, 255, 0.32); }
    .btn--primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(34, 184, 221, 0.38); }
  .btn--ghost {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border2);
    box-shadow: var(--shadow-sm); }
    .btn--ghost:hover {
      border-color: var(--violet);
      color: var(--violet);
      transform: translateY(-3px); }
  .btn--block {
    width: 100%;
    justify-content: center; }

.field {
  margin-bottom: 16px; }
  .field__label {
    display: block;
    font-family: var(--font-m);
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px; }
  .field__control {
    width: 100%;
    background: #f6f7fc;
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 13px 16px;
    color: var(--text);
    font-size: 14.5px;
    outline: none;
    transition: .25s;
    resize: vertical; }
    .field__control::placeholder {
      color: var(--muted2); }
    .field__control:focus {
      border-color: var(--violet);
      box-shadow: 0 0 0 4px rgba(109, 74, 255, 0.12);
      background: #fff; }
  .field--check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--muted);
    margin: 6px 0 22px;
    cursor: pointer; }
    .field--check a {
      color: var(--cyan);
      text-decoration: underline;
      text-underline-offset: 3px; }
  .field__checkbox {
    accent-color: var(--violet);
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex-shrink: 0; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; }

@media (max-width: 768px) {
  .field-row {
    grid-template-columns: 1fr; } }
.tag {
  font-family: var(--font-m);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(8, 145, 178, 0.35);
  color: var(--cyan);
  background: rgba(8, 145, 178, 0.07); }
  .tag--violet {
    border-color: rgba(109, 74, 255, 0.35);
    color: var(--violet);
    background: rgba(109, 74, 255, 0.07); }
  .tag--pink {
    border-color: rgba(219, 39, 119, 0.35);
    color: var(--pink);
    background: rgba(219, 39, 119, 0.06); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  flex-wrap: wrap; }
  .section-head__title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 38px);
    letter-spacing: -1px; }
  .section-head__slash {
    color: var(--violet); }
  .section-head__sub {
    color: var(--muted);
    font-size: 15px;
    margin-top: 8px;
    max-width: 560px; }
  .section-head__search {
    position: relative; }
    .section-head__search input {
      width: 280px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      color: var(--text);
      padding: 12px 16px 12px 42px;
      font-size: 14px;
      outline: none;
      transition: .25s;
      box-shadow: var(--shadow-sm); }
      .section-head__search input::placeholder {
        color: var(--muted2); }
      .section-head__search input:focus {
        border-color: var(--violet);
        box-shadow: 0 0 0 4px rgba(109, 74, 255, 0.12); }
    .section-head__search svg {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      opacity: .55; }

@media (max-width: 768px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start; }
    .section-head__search input {
      width: 100%; } }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted2);
  font-family: var(--font-m);
  border: 1px dashed var(--border2);
  border-radius: var(--radius);
  background: #fff; }

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--grad);
  z-index: 1200;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 10px rgba(109, 74, 255, 0.4); }

.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  background: #fff;
  border: 1px solid var(--border2);
  border-left: 4px solid var(--green);
  border-radius: 14px;
  padding: 16px 22px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transform: translateX(140%);
  transition: 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  max-width: 340px; }
  .toast--show {
    transform: none; }

.to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1400;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--grad2);
  border: none;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  box-shadow: 0 10px 26px rgba(109, 74, 255, 0.4); }
  .to-top--show {
    opacity: 1;
    pointer-events: auto; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease; }
  .reveal--visible {
    opacity: 1;
    transform: none; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(245, 247, 252, 0.8);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s; }
  .header--scrolled {
    box-shadow: var(--shadow-sm); }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 16px; }
  .header__nav {
    display: flex;
    gap: 6px;
    align-items: center; }
  .header__link {
    position: relative;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 10px;
    transition: .25s; }
    .header__link:hover {
      color: var(--text);
      background: rgba(27, 30, 46, 0.05); }
    .header__link--active {
      color: var(--violet); }
      .header__link--active::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 4px;
        height: 2px;
        border-radius: 2px;
        background: var(--grad); }
  .header__cta {
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(109, 74, 255, 0.3); }
    .header__cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(34, 184, 221, 0.35); }
  .header__burger {
    display: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    color: var(--text);
    font-size: 18px; }
  .header__mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--border); }
    .header__mobile--open {
      display: flex; }
    .header__mobile .header__link {
      text-align: left;
      padding: 12px 14px; }

@media (max-width: 768px) {
  .header__nav, .header__cta {
    display: none; }
  .header__burger {
    display: block; } }
.footer {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 40px 0;
  background: #fff; }
  .footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap; }
  .footer__copy {
    color: var(--muted2);
    font-size: 13.5px; }
  .footer__links {
    display: flex;
    gap: 20px; }
  .footer__link {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 13.5px;
    transition: .2s; }
    .footer__link:hover {
      color: var(--cyan); }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; }

.article-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: .35s;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none; }
  .article-card:hover {
    transform: translateY(-6px);
    border-color: rgba(109, 74, 255, 0.45);
    box-shadow: var(--shadow-lg); }
    .article-card:hover .article-card__cover img {
      transform: scale(1.08); }
    .article-card:hover .article-card__more {
      gap: 11px; }
  .article-card__cover {
    height: 170px;
    overflow: hidden;
    position: relative; }
    .article-card__cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .6s; }
  .article-card__body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1; }
  .article-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap; }
  .article-card__title {
    font-family: var(--font-h);
    font-size: 18.5px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.3px; }
  .article-card__excerpt {
    color: var(--muted);
    font-size: 14px;
    flex: 1; }
  .article-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-m);
    font-size: 12px;
    color: var(--muted2);
    border-top: 1px dashed var(--border2);
    padding-top: 14px; }
  .article-card__more {
    color: var(--cyan);
    font-weight: 700;
    font-family: var(--font-b);
    font-size: 13.5px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    transition: .25s; }

@media (max-width: 992px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .article-grid {
    grid-template-columns: 1fr; } }
@keyframes blink {
  50% {
    opacity: 0; } }
@keyframes floaty {
  0%,
	100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); } }
@keyframes tick {
  to {
    transform: translateX(-50%); } }
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 40px 0 30px; }
  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-m);
    font-size: 12.5px;
    color: var(--cyan);
    background: rgba(8, 145, 178, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.25);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 22px; }
  .hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px rgba(5, 150, 105, 0.6);
    animation: pulse 1.8s infinite; }
  .hero__title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 20px; }
  .hero__type {
    font-family: var(--font-m);
    font-size: clamp(15px, 2vw, 19px);
    color: var(--muted);
    margin-bottom: 18px;
    min-height: 1.6em; }
  .hero__type-prompt {
    color: var(--violet); }
  .hero__cursor {
    display: inline-block;
    width: 9px;
    height: 1.1em;
    background: var(--violet);
    vertical-align: -2px;
    margin-left: 3px;
    animation: blink 1s steps(1) infinite; }
  .hero__desc {
    color: var(--muted);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px; }
  .hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px; }
  .hero__stats {
    display: flex;
    gap: 38px;
    flex-wrap: wrap; }
  .hero__stat b {
    display: block;
    font-family: var(--font-h);
    font-size: 30px;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; }
  .hero__stat span {
    font-size: 13px;
    color: var(--muted2);
    font-family: var(--font-m); }
  .hero__visual {
    position: relative; }
  .hero__frame {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: var(--shadow-lg);
    transform: rotate(1.5deg);
    transition: .5s; }
    .hero__frame:hover {
      transform: rotate(0) scale(1.02); }
    .hero__frame img {
      width: 100%;
      height: 420px;
      object-fit: cover; }
  .hero__chip {
    position: absolute;
    font-family: var(--font-m);
    font-size: 12.5px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    gap: 8px;
    align-items: center;
    box-shadow: var(--shadow-md);
    animation: floaty 5s ease-in-out infinite; }
    .hero__chip--c1 {
      top: 22px;
      left: -26px;
      color: var(--green); }
    .hero__chip--c2 {
      bottom: 60px;
      right: -18px;
      color: var(--cyan);
      animation-delay: 1.4s; }
    .hero__chip--c3 {
      bottom: -16px;
      left: 36px;
      color: var(--pink);
      animation-delay: 2.6s; }

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px; }
    .hero__frame img {
      height: 340px; } }
@media (max-width: 768px) {
  .hero__stats {
    gap: 24px; }
  .hero__chip--c1 {
    left: 8px; } }
.ticker {
  margin: 34px 0 8px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  background: #fff; }
  .ticker__track {
    display: flex;
    gap: 44px;
    width: max-content;
    animation: tick 26s linear infinite;
    font-family: var(--font-m);
    font-size: 13.5px;
    color: var(--muted2);
    white-space: nowrap; }
    .ticker__track span b {
      color: var(--violet);
      font-weight: 400; }

.about-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  background: linear-gradient(120deg, rgba(109, 74, 255, 0.08), rgba(8, 145, 178, 0.06)), #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 34px 38px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm); }
  .about-strip::before {
    content: "\003C/\003E";
    position: absolute;
    right: -10px;
    bottom: -46px;
    font-family: var(--font-m);
    font-size: 150px;
    color: rgba(109, 74, 255, 0.07);
    font-weight: 700;
    z-index: 0; }
  .about-strip__avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 4px;
    background: var(--grad2);
    box-shadow: 0 0 26px rgba(109, 74, 255, 0.35); }
    .about-strip__avatar img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #fff; }
  .about-strip__title {
    font-family: var(--font-h);
    font-size: 23px;
    margin-bottom: 8px; }
  .about-strip__text {
    color: var(--muted);
    font-size: 15px;
    max-width: 640px; }
  .about-strip__socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2; }
  .about-strip__soc {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
    font-family: var(--font-m);
    box-shadow: var(--shadow-sm); }
    .about-strip__soc:hover {
      background: rgba(109, 74, 255, 0.07);
      border-color: var(--violet);
      color: var(--violet);
      transform: translateX(4px); }

@media (max-width: 992px) {
  .about-strip {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center; }
    .about-strip__socials {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center; } }
.subscribe {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 40px;
  text-align: center;
  background: radial-gradient(600px 200px at 50% 0%, rgba(109, 74, 255, 0.1), transparent), #fff;
  box-shadow: var(--shadow-sm); }
  .subscribe__title {
    font-family: var(--font-h);
    font-size: 26px;
    margin-bottom: 10px; }
  .subscribe__text {
    color: var(--muted);
    margin-bottom: 24px; }
  .subscribe__form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
    justify-content: center; }
    .subscribe__form .field__control {
      flex: 1;
      min-width: 180px;
      background: #f6f7fc;
      padding: 14px 18px; }
    .subscribe__form .field--check {
      width: 100%;
      justify-content: center;
      margin-bottom: 0;
      text-align: left; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px; }

.cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  cursor: pointer;
  transition: .3s;
  position: relative;
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow-sm); }
  .cat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(300px 140px at 20% 0%, var(--glow, rgba(109, 74, 255, 0.12)), transparent);
    opacity: 0;
    transition: .35s; }
  .cat-card:hover::before {
    opacity: 1; }
  .cat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border2);
    box-shadow: var(--shadow-md); }
  .cat-card--selected {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(109, 74, 255, 0.18); }
  .cat-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: var(--tile, rgba(109, 74, 255, 0.1));
    border: 1px solid var(--border);
    margin-bottom: 16px;
    position: relative;
    z-index: 1; }
  .cat-card__title {
    font-family: var(--font-h);
    font-size: 19px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1; }
  .cat-card__desc {
    color: var(--muted);
    font-size: 13.5px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1; }
  .cat-card__count {
    font-family: var(--font-m);
    font-size: 12px;
    color: var(--cyan);
    position: relative;
    z-index: 1; }

.cat-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 44px 0 26px;
  flex-wrap: wrap; }
  .cat-filter__title {
    font-family: var(--font-h);
    font-size: 24px; }
  .cat-filter__reset {
    background: none;
    border: none;
    color: var(--cyan);
    font-family: var(--font-m);
    font-size: 13.5px;
    text-decoration: underline;
    text-underline-offset: 4px; }

@media (max-width: 992px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .cat-grid {
    grid-template-columns: 1fr; } }
.doc-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 44px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm); }
  .doc-card__hero {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 26px; }
  .doc-card__warn {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(251, 191, 36, 0.14);
    border: 1px solid rgba(217, 155, 10, 0.4);
    display: grid;
    place-items: center;
    font-size: 26px;
    flex-shrink: 0; }
  .doc-card__title {
    font-family: var(--font-h);
    font-size: 30px; }
  .doc-card__meta {
    color: var(--muted2);
    font-family: var(--font-m);
    font-size: 12.5px; }
  .doc-card__lead {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 30px; }
  .doc-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 30px; }
  .doc-card__item {
    background: #fafbff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    transition: .25s; }
    .doc-card__item:hover {
      border-color: var(--border2);
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm); }
  .doc-card__ic {
    font-size: 22px;
    margin-bottom: 12px; }
  .doc-card h4 {
    font-family: var(--font-h);
    font-size: 16px;
    margin-bottom: 8px; }
  .doc-card p {
    color: var(--muted);
    font-size: 13.5px; }
  .doc-card__note {
    border-left: 3px solid var(--violet);
    background: rgba(109, 74, 255, 0.06);
    border-radius: 0 14px 14px 0;
    padding: 18px 22px;
    color: var(--muted);
    font-size: 14px; }

@media (max-width: 768px) {
  .doc-card {
    padding: 28px; }
    .doc-card__grid {
      grid-template-columns: 1fr; } }
.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: start; }
  .contact__stack {
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .contact__info {
    display: flex;
    gap: 16px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 22px;
    transition: .25s;
    text-decoration: none;
    color: var(--text);
    box-shadow: var(--shadow-sm); }
    .contact__info:hover {
      border-color: var(--violet);
      transform: translateX(6px);
      box-shadow: var(--shadow-md); }
    .contact__info--static {
      cursor: default; }
      .contact__info--static:hover {
        transform: none;
        border-color: var(--border); }
    .contact__info small {
      display: block;
      color: var(--muted2);
      font-family: var(--font-m);
      font-size: 11.5px;
      margin-bottom: 3px; }
    .contact__info b {
      font-size: 15px; }
  .contact__ic {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 20px;
    background: rgba(109, 74, 255, 0.09);
    border: 1px solid var(--border);
    flex-shrink: 0; }
  .contact__form {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm); }
    .contact__form::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--grad); }
  .contact__form-title {
    font-family: var(--font-h);
    font-size: 24px;
    margin-bottom: 6px; }
  .contact__form-text {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 26px; }

@media (max-width: 992px) {
  .contact {
    grid-template-columns: 1fr; } }
@keyframes commentIn {
  from {
    opacity: 0;
    transform: translateY(12px); }
  to {
    opacity: 1;
    transform: none; } }
.article {
  padding-bottom: 40px; }
  .article__cover {
    position: relative;
    height: 280px;
    max-width: 880px;
    margin: 0 auto;
    border-radius: 26px 26px 0 0;
    overflow: hidden; }
    .article__cover img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .article__cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--bg2)); }
  .article__body {
    max-width: 880px;
    margin: 0 auto;
    padding: 8px 48px 48px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 26px 26px;
    box-shadow: var(--shadow-sm); }
  .article__title {
    font-family: var(--font-h);
    font-size: clamp(24px, 3.4vw, 34px);
    letter-spacing: -.8px;
    line-height: 1.2;
    margin: 14px 0; }
  .article__meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-family: var(--font-m);
    font-size: 12.5px;
    color: var(--muted2);
    margin-bottom: 28px;
    align-items: center; }
  .article__author {
    display: flex;
    gap: 9px;
    align-items: center;
    color: var(--muted); }
    .article__author img {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1px solid var(--violet); }
  .article__prose p {
    color: #444b61;
    font-size: 15.5px;
    margin-bottom: 18px; }
  .article__prose h3 {
    font-family: var(--font-h);
    font-size: 20px;
    margin: 30px 0 12px; }
  .article__prose pre {
    background: #f4f6fc;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    overflow-x: auto;
    margin: 0 0 22px;
    font-family: var(--font-m);
    font-size: 13px;
    line-height: 1.7;
    color: #0e5f78;
    position: relative; }
    .article__prose pre::before {
      content: attr(data-lang);
      position: absolute;
      top: 8px;
      right: 14px;
      font-size: 10.5px;
      color: var(--muted2);
      text-transform: uppercase;
      letter-spacing: 1px; }
  .article__prose blockquote {
    border-left: 3px solid var(--cyan);
    background: rgba(8, 145, 178, 0.06);
    padding: 16px 22px;
    border-radius: 0 14px 14px 0;
    color: var(--muted);
    font-style: italic;
    margin: 0 0 22px; }
  .article__related {
    margin-top: 36px; }
  .article__related h4,
  .article h4 {
    font-family: var(--font-m);
    font-size: 12px;
    color: var(--muted2);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px; }
  .article__chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; }
  .article__chip {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--muted);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 13px;
    transition: .25s;
    box-shadow: var(--shadow-sm); }
    .article__chip:hover {
      color: var(--violet);
      border-color: var(--violet);
      background: rgba(109, 74, 255, 0.05); }
  .article__divider {
    height: 1px;
    background: var(--border);
    margin: 36px 0; }

.comments__title {
  font-family: var(--font-h);
  font-size: 22px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px; }
.comments__cnt {
  font-family: var(--font-m);
  font-size: 12px;
  background: var(--grad2);
  padding: 4px 11px;
  border-radius: 999px;
  color: #fff; }

.comment {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  animation: commentIn .4s ease; }
  .comment__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--font-h); }
  .comment__body {
    background: #f8f9fe;
    border: 1px solid var(--border);
    border-radius: 4px 16px 16px 16px;
    padding: 14px 18px;
    flex: 1; }
    .comment__body p {
      color: var(--muted);
      font-size: 14px;
      white-space: pre-wrap; }
  .comment__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap; }
    .comment__head b {
      font-size: 14px; }
    .comment__head span {
      font-family: var(--font-m);
      font-size: 11.5px;
      color: var(--muted2); }

.comment-form {
  background: #fafbff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  margin-top: 28px; }
  .comment-form__title {
    font-family: var(--font-h);
    font-size: 16px;
    margin-bottom: 14px; }

@media (max-width: 768px) {
  .article__body {
    padding: 8px 22px 34px; }
  .article__cover {
    border-radius: 0; }
  .article__body {
    border-radius: 0;
    border-left: 0;
    border-right: 0; } }

/*# sourceMappingURL=extra.css.map */
