 /* ====== HEADER / NAV (PGP STYLE) ====== */
:root {
  --terminal-font: "IBM Plex Mono", "Courier New", Consolas, monospace;
}

/* УДАЛИ все * { font-family } — оставь только это */
body, html {
  font-family: var(--terminal-font);
  font-feature-settings: "liga" 0, "calt" 0;
  letter-spacing: 0.015em;
}

.hero-title, .nav-main, .pgp-terminal, .access-bar,
.btn-plain, .hero-meta-row, .hero-prefix {
  font-family: var(--terminal-font) !important;
}

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(10px);
      background: rgba(3, 7, 18, 0.96);
      border-bottom: 1px solid #111827;
    }

    .header-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
      
    }

    .brand {
      display: inline-flex;
      align-items: baseline;
      gap: 0.45rem;
      text-decoration: none;
      color: #e5e7eb;
    }

    .brand-mark {
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-weight: 800;
    }

    .brand-tag {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #6b7280;
    }

    .nav-main {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-main a {
      text-decoration: none;
    }

    .nav-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.4rem 0.8rem;
      border-radius: 999px;
      border: 1px solid #1f2937;
      background: #020617;
      color: #e5e7eb;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
     
      transition: background 0.16s ease, border-color 0.16s ease, transform 0.12s ease;
    }

    .nav-btn.primary {
      border-color: #22c55e;
      background: #022c22;
      color: #bbf7d0;
    }

    .nav-btn:hover {
      transform: translateY(-1px);
      border-color: #4b5563;
      background: #020617;
    }

    .nav-btn.primary:hover {
      background: #064e3b;
      border-color: #22c55e;
    }

    .nav-toggle {
      display: none;
      width: 30px;
      height: 22px;
      padding: 0;
      border: 0;
      background: transparent;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }

    .nav-toggle span {
      height: 2px;
      background: #e5e7eb;
      border-radius: 999px;
      width: 100%;
    }

    @media (max-width: 840px) {
      .nav-main {
        position: fixed;
        inset: 60px 0 auto 0;
        padding: 0.9rem 1.6rem 1.1rem;
        background: #020617;
        border-bottom: 1px solid #111827;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
      }
      .nav-main.nav-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }
      .nav-toggle {
        display: inline-flex;
      }
    }

    /* ====== GLOBAL MAIN BACKGROUND ====== */

    body {
      margin: 0;
      background: radial-gradient(circle at top, #020617 0, #020617 40%, #000000 100%);
      color: #e5e7eb;
    
    }

    main {
      min-height: 100vh;
    }

    .container {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.4rem;
    }

    /* ====== HERO – PGP/TERMINAL ====== */

    .hero-minimal {
      padding: 90px 0 40px;
    }

    .hero-shell {
      border-radius: 18px;
      background: radial-gradient(circle at top left, #0b1120 0, #020617 55%, #020617 100%);
      border: 1px solid #111827;
      box-shadow: 0 24px 70px rgba(15, 23, 42, 0.7);
      overflow: hidden;
      max-width: 1120px;
      margin: 0 auto;
    }

    .hero-shell-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.55rem 1rem;
      background: #020617;
      border-bottom: 1px solid #111827;

      font-size: 0.75rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #9ca3af;
    }

    .shell-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
    }

    .shell-label {
      flex: 1;
      margin-left: 0.7rem;
      color: #6b7280;
    }

    .shell-status {
      color: #bbf7d0;
    }

    ..hero-shell-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* Фиксированные пропорции */
  gap: 2.5rem;
  padding: 2.4rem 2.6rem 2.8rem;
}

/* ТЕРМИНАЛ СЛЕВА */
.hero-col-terminal .pgp-terminal {
  height: 100%; /* Заполняет всю высоту */
  min-height: 280px;
}

.pgp-terminal-body {
  height: 240px; /* Фиксированная высота */
  overflow-y: auto;
  padding: 1rem 1.1rem;
}

/* АНИМАЦИЯ СТРОК — КРИТИЧНО */
.pgp-line {
  margin: 0 0 0.4rem 0;
  opacity: 0;
  transform: translateX(-10px);
  animation: terminalType 0.6s ease-out forwards;
  white-space: nowrap;
}

.pgp-line:nth-child(1) { animation-delay: 0.2s; }
.pgp-line:nth-child(2) { animation-delay: 0.7s; }
.pgp-line:nth-child(3) { animation-delay: 1.2s; }
.pgp-line:nth-child(4) { animation-delay: 1.7s; }
.pgp-line:nth-child(5) { animation-delay: 2.2s; }
.pgp-line:nth-child(6) { animation-delay: 2.7s; }
.pgp-line:nth-child(7) { animation-delay: 3.2s; }
.pgp-line:nth-child(8) { animation-delay: 3.7s; }
.pgp-line:nth-child(9) { animation-delay: 4.2s; }
.pgp-line:nth-child(10){ animation-delay: 4.7s; }

@keyframes terminalType {
  0% { opacity: 0; transform: translateX(-10px); }
  50% { opacity: 0.5; transform: translateX(5px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ПРАВАЯ КОЛОНКА появляется ПОСЛЕ терминала */
.hero-col-main {
  opacity: 0;
  transform: translateY(20px);
  animation: resultFade 1s ease-out 1s forwards; /* 5 сек задержка */
}

@keyframes resultFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem) !important; /* Уменьшил */
  line-height: 1;
  margin-bottom: 0.8rem;
}

.hero-subtitle-minimal {
  max-width: 380px; /* Сузил */
}


    .hero-col-main {
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
    }

    .hero-prefix {
 
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #6b7280;
    }

    .hero-title {
   
      font-size: clamp(2.6rem, 6vw, 4rem);
      letter-spacing: 0.28em;
      text-transform: uppercase;
      margin: 0;
      color: #f9fafb;
    }

    .hero-blink {
      display: inline-block;
      width: 0.6ch;
      animation: heroCursor 1.1s steps(2, start) infinite;
    }

    @keyframes heroCursor {
      0%, 49% { opacity: 1; }
      50%, 100% { opacity: 0; }
    }

    .hero-subtitle-minimal {
      font-size: 0.92rem;
      color: #9ca3af;
      max-width: 480px;
      line-height: 1.7;
    }

    .hero-meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .hero-meta-row span {
      padding: 0.35rem 0.8rem;
      border-radius: 999px;
      border: 1px solid #1f2937;
      background: rgba(15, 23, 42, 0.9);
      color: #9ca3af;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-top: 0.6rem;
    }

    .btn-plain {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.7rem 1.1rem;
      border-radius: 999px;
      border: 1px solid #111827;
      background: transparent;
      color: #e5e7eb;
      text-decoration: none;

      font-size: 0.8rem;
      text-transform: lowercase;
      transition: background 0.18s ease, border-color 0.18s ease, transform 0.14s ease;
    }

    .btn-plain.primary {
      background: #22c55e;
      color: #022c22;
      border-color: #22c55e;
    }

    .btn-plain:hover {
      transform: translateY(-1px);
      border-color: #4b5563;
      background: rgba(15, 23, 42, 0.9);
    }

    .btn-plain.primary:hover {
      background: #16a34a;
      border-color: #16a34a;
    }

    .hero-col-side {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .hero-side-card {
      border-radius: 14px;
      border: 1px solid #111827;
      background: radial-gradient(circle at top, #020617 0, #020617 40%, #000000 100%);
      padding: 0.9rem 1.1rem 1.1rem;
  
    }

    .hero-side-header {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #6b7280;
      margin-bottom: 0.6rem;
    }

    .hero-side-list {
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 0.82rem;
    }

    .hero-side-list li {
      display: flex;
      justify-content: space-between;
      gap: 0.5rem;
      padding: 0.25rem 0;
      border-bottom: 1px dashed #111827;
    }
    .hero-side-list li:last-child {
      border-bottom: none;
    }
    .hero-side-list span:first-child {
      color: #6b7280;
    }
    .hero-side-list span:last-child {
      color: #e5e7eb;
      font-weight: 600;
    }

    .hero-side-card.compact {
      padding: 0.85rem 1.1rem;
    }

    .hero-side-tags {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      font-size: 0.78rem;
    }

    .hero-side-tags li {
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      border: 1px dashed #1f2937;
      color: #9ca3af;
    }
.pgp-hero {
  border-radius: 18px;
  background: radial-gradient(circle at top left, #020617 0, #020617 40%, #000000 100%);
  border: 1px solid #111827;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.7);
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
}

.pgp-hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.2rem;
  padding: 2.1rem 2.3rem 2.4rem;
}

/* терминал справа */

.pgp-terminal {
  border-radius: 14px;
  border: 1px solid #111827;
  background: #020617;
  overflow: hidden;

  font-size: 0.8rem;
}

.pgp-terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.8rem;
  background: #020617;
  border-bottom: 1px solid #111827;
  color: #6b7280;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.pgp-title {
  opacity: 0.8;
}

.pgp-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

/* тело терминала */

.pgp-terminal-body {
  padding: 0.7rem 0.9rem 0.85rem;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
  color: #e5e7eb;
  min-height: 210px;
}

.pgp-line {
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(4px);
  animation: pgpLineFade 0.4s ease-out forwards;
}

.pgp-line:nth-child(1) { animation-delay: 0.2s; }
.pgp-line:nth-child(2) { animation-delay: 0.4s; }
.pgp-line:nth-child(3) { animation-delay: 0.6s; }
.pgp-line:nth-child(4) { animation-delay: 0.8s; }
.pgp-line:nth-child(5) { animation-delay: 1.0s; }
.pgp-line:nth-child(6) { animation-delay: 1.2s; }
.pgp-line:nth-child(7) { animation-delay: 1.4s; }
.pgp-line:nth-child(8) { animation-delay: 1.6s; }
.pgp-line:nth-child(9) { animation-delay: 1.8s; }
.pgp-line:nth-child(10){ animation-delay: 2.0s; }

@keyframes pgpLineFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* цветовые акценты в терминале можно добавить через span, если захочешь:
   например, ок/ошибка и т.д. */

@media (max-width: 900px) {
  .pgp-hero-body {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.8rem 1.6rem 2rem;
  }
}
    /* ====== ACCESS / ONION (НОВЫЙ ВИЗУАЛ КОПИРОВАНИЯ) ====== */

    #access {
      padding: 40px 0 10px;
    }

    .official-link {
      max-width: 640px;
      margin: 0 auto;
      border-radius: 18px;
      border: 1px solid #111827;
      background: #020617;
      padding: 1.8rem 2rem 1.9rem;

      position: relative;
      overflow: hidden;
    }

    .official-link::before {
      content: "PGP VERIFIED ENTRY";
      position: absolute;
      top: 0.6rem;
      right: 1.4rem;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #22c55e;
      opacity: 0.4;
    }

    .logo-container {
      display: flex;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .centered-logo {
      max-width: 220px;
      width: 100%;
      height: auto;
      filter: drop-shadow(0 12px 35px rgba(34, 197, 94, 0.35));
    }

    .official-link h3 {
      font-size: 0.86rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #e5e7eb;
      margin: 0 0 0.8rem;
    }

   .copy-container {
  margin-top: 0.8rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px dashed #1f2937;
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.onion-url {
  font-family: var(--terminal-font);
  font-size: 0.8rem;
  color: #e5e7eb;
  word-break: break-all;
}

.copy-feedback {
  font-size: 0.75rem;
  color: #6b7280;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* состояние после копирования */
.copy-container.copied {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
}

.copy-container.copied .copy-feedback {
  opacity: 1;
  color: #22c55e;
}


    .btn-official {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      margin-top: 0.4rem;
      padding: 0.6rem 1.2rem;
      border-radius: 999px;
      border: 1px solid #22c55e;
      background: #022c22;
      color: #bbf7d0;
      font-size: 0.78rem;
      text-decoration: none;
      text-transform: lowercase;
      transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
    }

    .btn-official:hover {
      background: #064e3b;
      border-color: #22c55e;
      transform: translateY(-1px);
    }

    .official-link p {
      margin-top: 0.9rem;
      font-size: 0.8rem;
      color: #6b7280;
    }

    .official-link p i {
      margin-right: 0.4rem;
      color: #facc15;
    }

    /* Остальные блоки (security, why, categories, blog, news, faq, footer) можно подключить из твоего CSS без изменений
       — этот пример сосредоточен на новом стиле шапки, hero и access. */

    @media (max-width: 900px) {
      .hero-shell-body {
        grid-template-columns: minmax(0, 1fr);
        padding: 1.7rem 1.6rem 2rem;
      }
    }
	
	.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(3, 7, 18, 0.96);
  border-bottom: 1px solid #111827;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 60px;

  column-gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  color: #e5e7eb;
}

.brand-mark {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.brand-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
}

/* центрируем меню */
.nav-main {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease, transform 0.12s ease;
}

.nav-link:hover {
  color: #e5e7eb;
  border-color: #22c55e;
  transform: translateY(-1px);
}

/* кнопка connect справа */
.nav-connect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #22c55e;
  background: #022c22;
  color: #bbf7d0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}

.nav-connect:hover {
  background: #16a34a;
  border-color: #16a34a;
  transform: translateY(-1px);
}

/* мобилка */
.nav-toggle {
  display: none;
  width: 30px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  width: 100%;
}

@media (max-width: 840px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .nav-main {
    position: fixed;
    inset: 60px 0 auto 0;
    padding: 0.9rem 1.6rem 1.1rem;
    background: #020617;
    border-bottom: 1px solid #111827;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-main.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }
}



/* Глобальный технический шрифт */
:root {
  --terminal-font: "IBM Plex Mono", "Courier New", Consolas, monospace;
  --terminal-bg: #0a0e14;
  --terminal-fg: #e0e6ed;
  --accent-green: #00ff88;
  --accent-cyan: #00d4ff;
}

* {
  font-family: var(--terminal-font);
  font-feature-settings: "liga" 0, "calt" 0; /* отключаем лигатуры */
  font-variation-settings: "wght" 500; /* средняя жирность */
  letter-spacing: 0.02em;
}

/* Access Terminal */
.pgp-entry-terminal {
  padding: 60px 0;
  background: radial-gradient(circle at top, #020617 0%, #0a0e14 70%);
}

.pgp-entry-card {
  max-width: 580px;
  margin: 0 auto;
  border-radius: 0;
  border: 2px solid #1a2332;
  background: var(--terminal-bg);
  box-shadow: 
    0 0 0 1px #111827,
    0 25px 80px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: linear-gradient(90deg, #1a2332 0%, #2d3748 100%);
  border-bottom: 1px solid #2d3748;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: var(--accent-green); }

.terminal-title {
  font-size: 0.8rem;
  color: #a0aec0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: 1;
}

.pgp-entry-body {
  padding: 30px 28px 35px;
}

.entry-status {
  text-align: center;
  margin-bottom: 25px;
}

.status-badge {
  display: inline-block;
  background: var(--accent-green);
  color: #0a0e14;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.entry-logo {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 8px 25px rgba(0, 255, 136, 0.3));
}

.onion-terminal {
  position: relative;
  margin-bottom: 28px;
  background: #0f1620;
  border: 1px solid #2d3748;
  border-radius: 6px;
  overflow: hidden;
}

.terminal-prompt {
  padding: 12px 20px 0;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
}

.onion-address {
  padding: 8px 20px 16px;
  font-size: 0.88rem;
  color: var(--terminal-fg);
  word-break: break-all;
  line-height: 1.4;
  background: linear-gradient(90deg, transparent 0%, #0f1620 20%);
}

.copy-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid #4a5568;
  background: #1a2332;
  border-radius: 6px;
  color: #a0aec0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: var(--accent-green);
  color: var(--terminal-bg);
  border-color: var(--accent-green);
  transform: translateY(-50%) scale(1.05);
}

.copy-btn.copied {
  background: var(--accent-green);
  color: var(--terminal-bg);
  animation: pulse 0.6s ease-out;
}

@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.1); }
}

.terminal-connect-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent-green) 0%, #00cc6a 100%);
  color: #0a0e14;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  border: none;
  transition: all 0.25s ease;
  margin-bottom: 22px;
}

.terminal-connect-btn:hover {
  background: linear-gradient(135deg, #00cc6a 0%, var(--accent-green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
}

.entry-footer {
  font-size: 0.78rem;
  border-top: 1px solid #2d3748;
  padding-top: 18px;
}

.security-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
  color: #a0aec0;
}

.indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}

.indicator i {
  color: var(--accent-cyan);
  font-size: 0.85rem;
}

.warning-line {
  color: #fed7aa;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .pgp-entry-body {
    padding: 24px 20px 28px;
  }
  
  .security-indicators {
    flex-direction: column;
    gap: 8px;
  }
}



.access-flat {
  padding: 32px 0 20px;
}

.access-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid #1f2937;
  background: #020617;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.8);
}

.access-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.access-connect {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #22c55e;
  background: #022c22;
  color: #bbf7d0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: all 0.18s ease;
}

.access-connect:hover {
  background: #16a34a;
  border-color: #16a34a;
  transform: translateY(-1px);
}

.access-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
}

.access-middle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  background: #020617;
  border: 1px dashed #334155;
}

.access-prefix {
  color: #22c55e;
  font-size: 0.85rem;
}

.access-onion {
  font-size: 0.8rem;
  color: #e5e7eb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.access-right {
  display: flex;
  align-items: center;
}

.access-copy {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #334155;
  background: #020617;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
}

.access-copy:hover {
  background: #22c55e;
  color: #020617;
  border-color: #22c55e;
  transform: translateY(-1px);
}

.access-copy.copied {
  background: #22c55e;
  color: #020617;
}

.access-hint {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
}

.access-hint i {
  margin-right: 0.35rem;
  color: #facc15;
}

@media (max-width: 640px) {
  .access-bar {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .access-middle {
    order: 3;
  }

  .access-right {
    order: 2;
    justify-content: flex-start;
  }
}



.pgp-hero {
  border-radius: 18px;
  background: radial-gradient(circle at top left, #020617 0, #020617 40%, #000000 100%);
  border: 1px solid #111827;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.7);
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
}

.pgp-hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  padding: 2.1rem 2.3rem 2.4rem;
}

.hero-col-terminal {
  display: flex;
  flex-direction: column;
}

.pgp-terminal {
  border-radius: 12px;
  border: 1px solid #111827;
  background: #020617;
  overflow: hidden;

  font-size: 0.8rem;
}

.pgp-terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.85rem;
  background: #020617;
  border-bottom: 1px solid #111827;
  color: #6b7280;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.pgp-title {
  opacity: 0.85;
}

.pgp-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

.pgp-terminal-body {
  padding: 0.75rem 0.95rem 0.85rem;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
  color: #e5e7eb;
  min-height: 210px;
}

.pgp-line {
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(4px);
  animation: pgpLineFade 0.4s ease-out forwards;
}

.pgp-line:nth-child(1) { animation-delay: 0.15s; }
.pgp-line:nth-child(2) { animation-delay: 0.3s; }
.pgp-line:nth-child(3) { animation-delay: 0.45s; }
.pgp-line:nth-child(4) { animation-delay: 0.6s; }
.pgp-line:nth-child(5) { animation-delay: 0.75s; }
.pgp-line:nth-child(6) { animation-delay: 0.9s; }
.pgp-line:nth-child(7) { animation-delay: 1.05s; }
.pgp-line:nth-child(8) { animation-delay: 1.2s; }
.pgp-line:nth-child(9) { animation-delay: 1.35s; }
.pgp-line:nth-child(10){ animation-delay: 1.5s; }

@keyframes pgpLineFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Правая часть hero */

.hero-col-main {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-prefix {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
}

.hero-title {

  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  color: #f9fafb;
  line-height: 1.1;
}

.hero-title-sub {
  font-size: 0.52em;
  letter-spacing: 0.24em;
  color: #a5b4fc;
}

.hero-subtitle-minimal {
  font-size: 0.9rem;
  color: #9ca3af;
  max-width: 460px;
  line-height: 1.7;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
}

.hero-meta-row span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #1f2937;
  background: rgba(15, 23, 42, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* адаптив */

@media (max-width: 900px) {
  .pgp-hero-body {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.8rem 1.6rem 2.1rem;
  }
}



.mission-section {
  padding: 56px 0 40px;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.section-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9ca3af;
  margin: 0 0 0.9rem;
}

.section-title span {
  color: #e5e7eb;
}

.mission-prompt {
  font-size: 0.8rem;
  color: #22c55e;
  margin: 0 0 1.1rem;
}

.mission-log {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  border-left: 1px solid #1f2937;
}

.mission-log li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  column-gap: 1rem;
  padding: 0.35rem 0 0.35rem 1.1rem;
  font-size: 0.8rem;
}

.log-date {
  color: #6b7280;
}

.log-text {
  color: #e5e7eb;
}

.mission-status {
  margin-top: 0.6rem;
  font-size: 0.8rem;
}

.status-label {
  color: #22c55e;
  margin-right: 0.4rem;
}

.status-value {
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mission-copy p {
  font-size: 0.86rem;
  color: #9ca3af;
  line-height: 1.7;
  margin: 0 0 0.8rem;
}

.mission-promise {
  color: #e5e7eb;
}

@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Секция в целом по центру */
.info-section {
  padding: 60px 0 50px;
  background: radial-gradient(circle at top, rgba(2, 6, 23, 0.8) 0%, transparent 70%);
  text-align: center;            /* Центруем заголовок и подпись */
}

/* Заголовок */
.section-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #9ca3af;
  margin: 0 0 1rem 0;
  font-family: var(--terminal-font);
  text-align: center;            /* Явно по центру */
}

/* Подзаголовок уже центрованный, оставляем */
.section-subtitle {
  font-size: 0.88rem;
  color: #9ca3af;
  max-width: 680px;
  margin: 0 auto 2.8rem;
  line-height: 1.65;
  text-align: center;
}

/* Сетка: 3 в ряд на десктопе */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* фиксированно 3 */
  gap: 1.8rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;  /* контент карточек можно вернуть влево, чтобы текст не был по центру */
}

/* Карточку слегка выравниваем внутри, чтобы не «липла» к левому краю */
.feature {
  padding: 1.6rem 1.4rem;
}

/* Иконку и заголовок карточки можно оставить по центру: */
.feature {
  text-align: center;
}

/* Адаптив: на планшете/мобиле ломаемся в 1 колонку */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
#categories {
  padding: 56px 0 48px;
  text-align: center;
}

#categories .section-title {
  margin-bottom: 1rem;
}

#categories .section-subtitle {
  margin-bottom: 2.4rem;
}

/* 2 x 3 на десктопе */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 по горизонтали */
  gap: 1.8rem 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cat-card {
  padding: 1.6rem 1.4rem;
  border-radius: 16px;
  border: 1px solid #1f2937;
  background: rgba(2, 6, 23, 0.7);
  text-align: center;
  transition: all 0.25s ease;
}

.cat-card:hover {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

.cat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-icon svg {
  width: 52px;
  height: 52px;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 12px rgba(34, 197, 94, 0.35));
}

.cat-card h3 {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e5e7eb;
  margin: 0 0 0.6rem;
  font-family: var(--terminal-font);
}

.cat-card p {
  font-size: 0.84rem;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

/* Адаптив: 2 по ширине на планшете, 1 на мобиле */
@media (max-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cat-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.blog-section, .news-section {
  padding: 56px 0;
}

.blog-grid, .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.post-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid #1f2937;
  background: rgba(2, 6, 23, 0.8);
  overflow: hidden;
  transition: all 0.25s ease;
}

.post-card:hover {
  border-color: #22c55e;
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.12);
  transform: translateY(-2px);
}

.post-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.post-badge.status-online {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid #22c55e;
}

.post-badge.security {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.post-badge.escrow {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.post-badge.audit {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
}

.post-badge.milestone, .post-badge.network {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.post-image {
  height: 160px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 1.4rem;
}

.post-date {
  font-size: 0.75rem;
  color: #6b7280;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  font-family: var(--terminal-font);
}

.post-title {
  font-size: 0.92rem;
  color: #e5e7eb;
  margin: 0 0 0.6rem;
  line-height: 1.3;
  font-family: var(--terminal-font);
  font-weight: 600;
}

.post-excerpt {
  font-size: 0.84rem;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

.read-all {
  text-align: center;
}

.read-all .btn-plain {
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
}

/* Мобильная сетка */
@media (max-width: 768px) {
  .blog-grid, .news-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer {
  padding: 48px 0 24px;
  background: linear-gradient(180deg, #020617 0%, #000000 100%);
  border-top: 1px solid #111827;
  color: #9ca3af;
  font-family: var(--terminal-font);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem 1.8rem;
  margin-bottom: 2rem;
}

.brand-col {
  border-right: 1px solid #1f2937;
  padding-right: 1.5rem;
}

.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
  margin-bottom: 0.8rem;
}

.footer-brand .brand-mark {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e5e7eb;
  font-weight: 700;
}

.footer-brand .brand-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 280px;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #22c55e;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.footer-col-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
  margin: 0 0 0.9rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.84rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.2rem 0;
}

.footer-links a:hover {
  color: #e5e7eb;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  border-top: 1px solid #1f2937;
  font-size: 0.75rem;
  color: #6b7280;
}

.footer-bottom-left {
  letter-spacing: 0.08em;
}

.footer-bottom-right {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* МОБИЛЬНАЯ ВЕРСИЯ: 1 колонка */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  
  .brand-col {
    border-right: none;
    border-bottom: 1px solid #1f2937;
    padding-right: 0;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 32px 0 20px;
  }
  
  .footer-links {
    gap: 0.4rem;
  }
}


.hero-about .pgp-hero-body {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
}

/* Mission / Origin */
.mission-section {
  padding: 56px 0 40px;
}
.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: flex-start;
}
.mission-copy p {
  font-size: 0.86rem;
  color: #9ca3af;
  line-height: 1.7;
  margin: 0 0 0.8rem;
}
.mission-promise {
  color: #e5e7eb;
}

/* How it works */
.how-section {
  padding: 56px 0 48px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  max-width: 960px;
  margin: 0 auto;
}
.how-step {
  border-radius: 14px;
  border: 1px solid #1f2937;
  background: rgba(2, 6, 23, 0.8);
  padding: 1.4rem 1.2rem;
}
.how-step-label {
  font-size: 0.8rem;
  color: #22c55e;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.how-step h3 {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e5e7eb;
  margin: 0 0 0.5rem;
}
.how-step p {
  font-size: 0.84rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* Team / Ethos */
.team-section {
  padding: 48px 0 56px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  max-width: 1000px;
  margin: 0 auto;
}
.team-card {
  border-radius: 14px;
  border: 1px solid #1f2937;
  background: rgba(2, 6, 23, 0.7);
  padding: 1.4rem 1.2rem;
}
.team-card h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e5e7eb;
  margin: 0 0 0.5rem;
}
.team-card p {
  font-size: 0.84rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* Адаптив */
@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .how-grid, .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-simple {
  padding: 100px 0 60px;
  text-align: center;
}

.hero-simple-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title-simple {
  font-family: var(--terminal-font);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #f9fafb;
  margin: 0 0 1.2rem;
  line-height: 1.1;
}

.hero-subtitle-large {
  font-size: 1.1rem;
  color: #9ca3af;
  max-width: 620px;
  margin: 0 auto 1.8rem;
  line-height: 1.65;
}

.hero-meta-row-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
  font-family: var(--terminal-font);
}

.hero-meta-row-simple span {
  padding: 0.4rem 0.9rem;
  border: 1px solid #1f2937;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 999px;
}

/* Мобильный */
@media (max-width: 640px) {
  .hero-simple {
    padding: 80px 0 40px;
  }
  
  .hero-subtitle-large {
    font-size: 1rem;
  }
}

/* Hero simple уже есть у тебя */

/* Mirrors page */
.mirrors-section {
  padding: 40px 0 56px;
}

.mirror-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  margin-top: 1.4rem;
}

.mirror-item {
  border-radius: 16px;
  border: 1px solid #1f2937;
  background: rgba(2, 6, 23, 0.9);
  padding: 1.3rem 1.2rem 1.4rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.7);
}

.mirror-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.mirror-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #e5e7eb;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.status-dot.online {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

.mirror-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.mirror-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #22c55e;
  border-radius: 999px;
  border: 1px solid #22c55e;
  padding: 0.2rem 0.6rem;
}

/* compact access bar inside cards */
.access-bar-compact {
  margin-top: 0.4rem;
  box-shadow: none;
  padding: 0.6rem 0.7rem;
}

.access-bar-compact .access-connect {
  padding: 0.35rem 0.8rem;
  font-size: 0.7rem;
}

.access-bar-compact .access-onion {
  font-size: 0.78rem;
}

.mirrors-footer {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 640px) {
  .mirror-item {
    padding: 1.1rem 1rem 1.3rem;
  }
}


.mirror-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 сетка */
  gap: 1.4rem;
  margin-top: 1.4rem;
}

@media (max-width: 768px) {
  .mirror-grid {
    grid-template-columns: 1fr; /* 1 колонка на мобиле */
  }
}
.access-copy.copied {
  background: #22c55e !important;
  color: #020617 !important;
  animation: pulse 0.6s ease-out;
}


/* Simple hero — reuse earlier hero-simple styles */

/* Features grid & general */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1rem;
}

/* Official link copy container */
.official-link {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.copy-container {
  margin: 0.8rem auto;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px dashed #1f2937;
  background: rgba(15,23,42,0.9);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 420px;
  justify-content: center;
}
.onion-url {
  font-family: var(--terminal-font);
  font-size: 0.92rem;
  color: #e5e7eb;
  word-break: break-all;
}
.copy-feedback {
  font-size: 0.78rem;
  color: #6b7280;
  opacity: 0;
  transition: opacity 0.18s ease;
}

/* copied state */
.copy-container.copied {
  border-color: #22c55e;
  background: rgba(34,197,94,0.06);
}
.copy-container.copied .copy-feedback {
  opacity: 1;
  color: #22c55e;
}

/* hero card snapshot */
.hero-card { border-radius:12px; border:1px solid #1f2937; padding:1rem; background: rgba(2,6,23,0.85);}
.hero-pill { background:#111827; color:#9ca3af; padding:0.25rem 0.6rem; border-radius:999px; font-size:0.72rem; }

/* Responsive */
@media (max-width: 1000px) {
  .features-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .copy-container { min-width: 100%; display:flex; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .copy-container { padding: 0.7rem; }
}

/* ====== HERO CARD — OPERATIONAL SNAPSHOT ====== */
.hero-card {
border-radius: 12px;
border: 1px solid #1f2937;
background: rgba(2, 6, 23, 0.88);
padding: 16px;
color: #e5e7eb;
max-width: 520px;
margin: 0 auto;
box-shadow: 0 10px 30px rgba(2,6,23,0.6);
font-family: var(--terminal-font);
}

.hero-card-header {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}

.hero-card-title {
display: flex;
align-items: center;
gap: 10px;
font-size: 0.88rem;
text-transform: uppercase;
letter-spacing: 0.16em;
color: #f8fafc;
font-weight: 700;
}

.hero-card-dot {
width: 10px;
height: 10px;
background: linear-gradient(180deg, #34d399, #16a34a);
border-radius: 50%;
box-shadow: 0 6px 18px rgba(34,197,94,0.15);
display: inline-block;
}

.hero-pill {
font-size: 0.72rem;
color: #9ca3af;
background: #0b1220;
padding: 6px 10px;
border-radius: 999px;
border: 1px solid #111827;
text-transform: uppercase;
letter-spacing: 0.12em;
}

/* grid of stats inside hero */
.hero-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
margin-bottom: 12px;
}

.hero-stat {
background: rgba(7, 10, 20, 0.55);
border: 1px solid #0f1724;
padding: 10px;
border-radius: 10px;
display: flex;
flex-direction: column;
gap: 6px;
align-items: flex-start;
}

.hero-stat-icon {
width: 36px;
height: 36px;
display: inline-flex;
align-items: center;
justify-content: center;
background: rgba(34,197,94,0.06);
border-radius: 8px;
margin-bottom: 4px;
flex-shrink: 0;
}

/* ensure inline SVGs inside get correct sizing */
.hero-stat-icon svg {
width: 20px;
height: 20px;
stroke: #22c55e;
fill: none;
}

/* labels and values */
.hero-stat-label {
font-size: 0.68rem;
color: #9ca3af;
text-transform: uppercase;
letter-spacing: 0.12em;
}

.hero-stat-value {
font-size: 0.95rem;
color: #e5e7eb;
font-weight: 600;
}

/* footer row */
.hero-card-footer {
display: flex;
justify-content: space-between;
gap: 8px;
margin-top: 6px;
font-size: 0.78rem;
color: #9ca3af;
}

/* smaller screens */
@media (max-width: 860px) {
.hero-grid {
grid-template-columns: 1fr 1fr;
}
.hero-card { max-width: 100%; }
}
@media (max-width: 520px) {
.hero-grid { grid-template-columns: 1fr; }
.hero-card-footer { flex-direction: column; gap: 4px; text-align: left; }
}

/* ====== TOR CARD (Tor Browser block) ====== */
.tor-card {
border-radius: 12px;
border: 1px solid #1f2937;
background: linear-gradient(180deg, rgba(2,6,23,0.9), rgba(0,0,0,0.85));
padding: 18px;
color: #e5e7eb;
max-width: 760px;
margin: 0 auto;
box-shadow: 0 14px 40px rgba(2,6,23,0.65);
font-family: var(--terminal-font);
}

.tor-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}

.tor-icon {
width: 48px;
height: 48px;
border-radius: 10px;
display: inline-flex;
align-items: center;
justify-content: center;
background: rgba(34,197,94,0.06);
flex-shrink: 0;
}

.tor-icon svg, .tor-icon img {
width: 26px;
height: 26px;
stroke: #22c55e;
fill: none;
}

/* badge next to icon */
.tor-badge {
display: flex;
flex-direction: column;
gap: 2px;
font-size: 0.72rem;
color: #9ca3af;
text-transform: uppercase;
letter-spacing: 0.12em;
}

/* heading and paragraphs */
.tor-card h2 {
margin: 6px 0 10px;
font-size: 1.05rem;
color: #f8fafc;
}

.tor-card p {
color: #9ca3af;
line-height: 1.6;
margin: 0 0 10px;
font-size: 0.9rem;
}

/* download button */
.btn-tor-download {
display: inline-flex;
align-items: center;
gap: 10px;
background: #e6f0e9;
color: #081018;
padding: 8px 12px;
border-radius: 10px;
text-decoration: none;
font-weight: 700;
font-size: 0.9rem;
border: none;
}

.btn-tor-icon svg {
width: 18px;
height: 18px;
display: inline-block;
vertical-align: middle;
}

/* responsive */
@media (max-width: 720px) {
.tor-card { padding: 14px; }
.tor-icon { width: 44px; height: 44px; }
.btn-tor-download { width: 100%; justify-content: center; }
}

/* ====== FEATURES GRID & ICONS ====== */
.features-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
margin-top: 14px;
}

.feature {
border-radius: 12px;
padding: 14px;
background: rgba(7,10,20,0.55);
border: 1px solid #0f1724;
color: #9ca3af;
min-height: 120px;
display: flex;
flex-direction: column;
gap: 10px;
}

.feature-icon {
width: 44px;
height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
background: rgba(34,197,94,0.06);
border-radius: 8px;
margin-bottom: 6px;
flex-shrink: 0;
}

/* if using inline SVG inside .feature-icon */
.feature-icon svg {
width: 22px;
height: 22px;
stroke: #22c55e;
fill: none;
}

/* titles inside features */
.feature h3 {
font-size: 0.9rem;
color: #e5e7eb;
text-transform: uppercase;
letter-spacing: 0.12em;
margin: 0;
}

/* paragraphs */
.feature p {
margin: 0;
color: #9ca3af;
line-height: 1.6;
font-size: 0.88rem;
}

/* responsive grids */
@media (max-width: 1000px) {
.features-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
.features-grid { grid-template-columns: 1fr; }
.feature { min-height: auto; }
}

.post-article { max-width: 980px; 
margin: 0 auto; 
font-family: var(--terminal-font); color:#e5e7eb; } 
.post-header { padding: 28px 0; text-align:left; } 
.post-title { font-size: clamp(1rem, 0vw, 2.2rem); 
letter-spacing:0.12em; text-transform:uppercase; margin:0 0 8px; } 
.post-meta { font-size:0.78rem; color:#9ca3af; margin:0 0 10px; } 
.post-dek { color:#9ca3af; max-width:760px; margin:0 0 18px; } .post-stats { display:flex; flex-direction:column; gap:18px; margin-bottom:20px; } .stats-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap:12px; } .stat { background:rgba(2,6,23,0.7); border:1px solid #111827; padding:12px; border-radius:10px; text-align:left; } .stat-label { font-size:0.72rem; color:#9ca3af; text-transform:uppercase; letter-spacing:0.12em; } .stat-value { font-size:1.15rem; color:#e5e7eb; font-weight:700; margin-top:6px; } .stat-note { font-size:0.72rem; color:#6b7280; margin-top:6px; } .infographic { margin-top:14px; display:flex; flex-direction:column; gap:10px; } .infographic-row { display:flex; gap:12px; align-items:center; } .infographic-label { width:220px; color:#9ca3af; font-size:0.85rem; text-transform:uppercase; letter-spacing:0.12em; } .bar { flex:1; background:rgba(15,23,42,0.6); border-radius:10px; padding:8px; position:relative; min-height:36px; display:flex; align-items:center; } .bar-fill { height:100%; border-radius:8px 8px; background:linear-gradient(90deg,#134e4a,#22c55e); opacity:0.95; position:absolute; left:0; top:0; bottom:0; } .bar-fill.before { background:linear-gradient(90deg,#334155,#475569); } .bar-fill.after { background:linear-gradient(90deg,#0f766e,#22c55e); } .bar-fill.reduced { background:linear-gradient(90deg,#063970,#0ea5e9); } .bar-value { position:relative; margin-left:12px; z-index:2; color:#e5e7eb; font-weight:600; } .post-body { margin-top:18px; color:#9ca3af; line-height:1.7; } .post-body h2, .post-body h3 { color:#e5e7eb; margin-top:12px; } .post-body ul { margin:8px 0 12px 20px; color:#9ca3af; } .post-cta { margin:24px 0 40px; } .cta-row { display:flex; gap:12px; } .cta-btn { background:#22c55e; color:#020617; padding:10px 14px; border-radius:10px; text-decoration:none; font-weight:700; } .cta-plain { color:#9ca3af; align-self:center; text-decoration:none; padding:10px 12px; } @media (max-width:760px){ .infographic-label{display:none;} .post-stats{gap:12px;} .stats-grid{grid-template-columns:1fr 1fr;} .cta-row{flex-direction:column;} } 

.bar-fill.success { 
  background: linear-gradient(90deg, #16a34a, #22c55e); 
}

.post-hero { padding: 80px 0 60px; background: linear-gradient(135deg, rgba(2,6,23,0.9), rgba(15,23,42,0.8)); }
.post-breadcrumb a { color: #9ca3af; text-decoration: none; font-size: 0.85rem; }
.post-title { font-size: clamp(1rem, 0vw, 3.4rem); letter-spacing: 0.1em; margin: 0 0 1rem; }
.post-meta { display: flex; gap: 1.5rem; color: #6b7280; font-size: 0.85rem; }
.post-content { max-width: 860px; margin: 0 auto 60px; padding: 0 20px; }
.post-section { margin-bottom: 2.5rem; }
.post-section h2 { color: #e5e7eb; font-size: 1.3rem; margin-bottom: 1rem; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.stat-card { text-align: center; padding: 1.2rem; background: rgba(34,197,94,0.08); border: 1px solid #22c55e20; border-radius: 12px; }
.stat-number { font-size: 1.6rem; font-weight: 700; color: #22c55e; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.8rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.1em; }

.latency-bars { background: rgba(15,23,42,0.6); padding: 1.5rem; border-radius: 12px; border: 1px solid #1f2937; }
.latency-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.latency-row:last-child { margin-bottom: 0; }
.latency-label { min-width: 80px; font-size: 0.85rem; color: #9ca3af; }
.latency-bar { flex: 1; height: 12px; border-radius: 6px; background: #334155; position: relative; }
.latency-before { background: linear-gradient(90deg, #ef4444, #f97316); width: 100%; }
.latency-after { background: linear-gradient(90deg, #10b981, #22c55e); width: 68%; }
.latency-value { font-size: 0.85rem; color: #e5e7eb; min-width: 90px; }

.feature-list.compact { margin: 1.5rem 0; }
.feature-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.feature-row:last-child { margin-bottom: 0; }
.feature-icon { width: 42px; height: 42px; border-radius: 8px; background: rgba(34,197,94,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feature-icon svg { width: 20px; height: 20px; stroke: #22c55e; }

.code-block { background: #0f172a; border: 1px solid #1e293b; border-radius: 10px; padding: 1.2rem; font-family: 'Courier New', monospace; font-size: 0.85rem; color: #93c5fd; margin: 1.5rem 0; white-space: pre-line; }

.node-status-compact { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin: 1rem 0; }
.node-item { padding: 1rem; background: rgba(2,6,23,0.6); border: 1px solid #1f2937; border-radius: 10px; display: flex; flex-direction: column; gap: 0.4rem; }
.node-status-icon { display: flex; align-items: center; gap: 0.6rem; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; }
.status-dot.online { background: #22c55e; box-shadow: 0 0 0 2px #22c5520; }
.status-dot.pending { background: #f59e0b; box-shadow: 0 0 0 2px #f59e0b20; }
.status-dot.review { background: #a855f7; box-shadow: 0 0 0 2px #a855f720; }

.back-link { color: #9ca3af; text-decoration: none; font-size: 0.9rem; padding: 0.8rem 1.2rem; border: 1px solid #374151; border-radius: 8px; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
.back-link:hover { border-color: #22c55e; color: #22c55e; }

@media (max-width: 768px) {
  .post-meta { flex-direction: column; gap: 0.5rem; }
  .feature-row { flex-direction: column; }
  .feature-icon { order: 2; align-self: center; }
  .latency-row { flex-direction: column; align-items: stretch; gap: 0.5rem; }
}


.metrics-table { background: rgba(15,23,42,0.8); border: 1px solid #1f2937; border-radius: 12px; overflow: hidden; margin: 2rem 0; }
.metrics-table table { width: 100%; border-collapse: collapse; }
.metrics-table th { background: rgba(34,197,94,0.1); color: #9ca3af; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 1rem 1.2rem; text-align: left; }
.metrics-table td { padding: 1rem 1.2rem; border-bottom: 1px solid #1f2937; }
.metrics-table tbody tr:hover { background: rgba(34,197,94,0.05); }
.metrics-table tbody tr:last-child td { border-bottom: none; }

.timeline { position: relative; padding: 2rem 0; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, #22c55e, transparent); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-marker { position: absolute; left: 12px; width: 20px; height: 20px; border-radius: 50%; z-index: 2; }
.timeline-marker.start { background: #6b7280; }
.timeline-marker.sync { background: #f59e0b; box-shadow: 0 0 0 3px #f59e0b20; }
.timeline-marker.cutover { background: #22c55e; box-shadow: 0 0 0 3px #22c5520; }
.timeline-marker.complete { background: #10b981; box-shadow: 0 0 0 3px #10b98120; }
.timeline-content { margin-left: 60px; padding: 1.5rem; background: rgba(7,10,20,0.6); border: 1px solid #1f2937; border-radius: 12px; }
.timeline-content h4 { color: #e5e7eb; margin: 0 0 0.8rem; font-size: 1rem; }

.infra-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.infra-card { padding: 1.5rem; border-radius: 12px; border: 1px solid #1f2937; }
.infra-card.primary { border-color: #22c55e; background: rgba(34,197,94,0.08); }
.infra-card.standby { border-color: #f59e0b; background: rgba(245,158,11,0.08); }
.infra-card.decommissioned { border-color: #6b7280; background: rgba(107,114,128,0.08); opacity: 0.7; }
.infra-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.status-dot.primary { background: #22c55e; }
.status-dot.standby { background: #f59e0b; }
.status-dot.offline { background: #6b7280; }
.infra-stats { font-size: 0.88rem; color: #9ca3af; line-height: 1.6; }
.infra-stats div { margin-bottom: 0.3rem; }
.infra-stats div:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .timeline::before { left: 15px; }
  .timeline-content { margin-left: 50px; padding: 1rem; }
  .metrics-table th, .metrics-table td { padding: 0.8rem; font-size: 0.85rem; }
}
.audit-summary { margin-bottom: 3rem; }
.summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.summary-card { text-align: center; padding: 2rem 1rem; border-radius: 16px; position: relative; overflow: hidden; }
.summary-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.summary-card.critical::before { background: #ef4444; }
.summary-card.high::before { background: #f97316; }
.summary-card.medium::before { background: #22c55e; }
.summary-card.low::before { background: #6b7280; }
.summary-icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.8; }
.stat-big { font-size: 3rem; font-weight: 800; display: block; color: #e5e7eb; }
.stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: #9ca3af; }
.stat-badge { display: inline-block; background: #22c55e; color: #020617; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.7rem; margin-top: 0.5rem; }

.audit-verdict h2 { color: #22c55e; margin-bottom: 1rem; }
.audit-verdict p { font-size: 1.1rem; line-height: 1.7; }

.scope-breakdown { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.scope-item h4 { color: #e5e7eb; margin-bottom: 1rem; }
.scope-item ul { color: #9ca3af; margin: 0; padding-left: 1.2rem; }
.scope-item li { margin-bottom: 0.5rem; }

.findings-accordion { margin: 2rem 0; }
.finding-item { background: rgba(15,23,42,0.6); border: 1px solid #1f2937; border-radius: 12px; margin-bottom: 1rem; overflow: hidden; }
.finding-header { padding: 1.2rem 1.5rem; cursor: pointer; display: flex; align-items: center; gap: 1rem; transition: background 0.2s; }
.finding-header:hover { background: rgba(34,197,94,0.1); }
.finding-type { padding: 0.3rem 0.8rem; border-radius: 6px; font-size: 0.75rem; font-weight: 700; }
.finding-type.medium { background: rgba(34,197,94,0.2); color: #22c55e; }
.finding-title { flex: 1; font-weight: 600; color: #e5e7eb; }
.finding-status { padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; }
.finding-status.fixed { background: #10b981; color: white; }
.finding-detail { padding: 0 1.5rem 1.5rem; color: #9ca3af; max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.finding-item.active .finding-detail { max-height: 200px; padding: 1.5rem 1.5rem 1.5rem; }

.audit-download { background: rgba(7,10,20,0.6); border: 1px solid #1f2937; border-radius: 12px; padding: 2rem; margin: 3rem 0; }
.report-links { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
.report-item { display: flex; flex-direction: column; gap: 0.5rem; }
.report-type { font-weight: 600; color: #e5e7eb; font-size: 0.95rem; }
.report-link { color: #93c5fd; text-decoration: none; font-family: monospace; padding: 0.4rem 0; }
.report-link:hover { color: #22c55e; }
.pgp-fingerprint { background: #0f172a; padding: 1rem; border-radius: 8px; font-family: monospace; font-size: 0.85rem; color: #9ca3af; }

.audit-quote { background: rgba(34,197,94,0.08); border-left: 4px solid #22c55e; padding: 2rem 2.5rem; margin: 3rem 0; }
.audit-quote p { font-size: 1.1rem; color: #e5e7eb; margin: 0 0 1rem; font-style: italic; }
.audit-quote cite { color: #9ca3af; font-size: 0.9rem; }

.roadmap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin: 2rem 0; }
.roadmap-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: rgba(15,23,42,0.6); border: 1px solid #1f2937; border-radius: 10px; }
.roadmap-status { font-size: 1.2rem; font-weight: 700; min-width: 24px; text-align: center; }
.roadmap-status.complete { color: #22c55e; }
.roadmap-status.planned { color: #f59e0b; }
.roadmap-status.continuous { color: #a855f7; }

@media (max-width: 768px) {
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .finding-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .audit-download { padding: 1.5rem; }
}

.milestone-card { text-align: center; padding: 3rem 2rem; background: rgba(34,197,94,0.08); border: 2px solid #22c55e40; border-radius: 16px; margin: 2rem 0; }
.milestone-number { font-size: 4rem; font-weight: 800; color: #22c55e; margin-bottom: 1rem; }
.milestone-label { font-size: 1.2rem; color: #e5e7eb; margin-bottom: 1.5rem; }
.milestone-stats { display: flex; justify-content: center; gap: 2rem; }
.milestone-stats span { color: #9ca3af; font-size: 0.95rem; }

.vendor-table { width: 100%; background: rgba(15,23,42,0.8); border: 1px solid #1f2937; border-radius: 12px; overflow: hidden; margin: 2rem 0; }
.vendor-table th { background: rgba(34,197,94,0.1); color: #9ca3af; padding: 1rem 1.2rem; text-align: left; font-size: 0.85rem; text-transform: uppercase; }
.vendor-table td { padding: 1rem 1.2rem; border-top: 1px solid #1f2937; }
.vendor-table tbody tr:hover { background: rgba(34,197,94,0.05); }

.numbered-process { background: rgba(7,10,20,0.6); border-left: 4px solid #22c55e; padding: 1.5rem 2rem; margin: 2rem 0; }
.numbered-process li { margin-bottom: 1rem; color: #9ca3af; }
.numbered-process strong { color: #e5e7eb; }

.bond-totals { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.total-item { text-align: center; padding: 1.5rem; background: rgba(15,23,42,0.6); border: 1px solid #1f2937; border-radius: 12px; }
.total-number { font-size: 2rem; font-weight: 700; color: #22c55e; display: block; margin-bottom: 0.5rem; }
.total-label { color: #9ca3af; font-size: 0.9rem; }
