@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #070a04;
  --surface: #10150a;
  --surface-2: #18210d;
  --text: #fbfff2;
  --muted: #b8c7ab;
  --green: #b8ff22;
  --green-soft: #dcff83;
  --red: #ff2d24;
  --red-soft: #ff8079;
  --ink: #111704;
  --line: rgba(255,255,255,.12);
  --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color-scheme: dark;
  background:
    radial-gradient(circle at 82% 7%, rgba(184,255,34,.23), transparent 28rem),
    radial-gradient(circle at 8% 82%, rgba(91,138,13,.16), transparent 34rem),
    linear-gradient(180deg, #090d05 0%, var(--bg) 48%, #050703 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  z-index: 10;
}

.header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #8fe500);
  color: #111704;
  box-shadow: 0 16px 50px rgba(184,255,34,.17);
  font-size: 20px;
}

.header-link {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.header-link:hover {
  border-color: var(--green);
  color: var(--green-soft);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  min-height: calc(100svh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 1080px;
  margin-bottom: 28px;
  font-size: clamp(54px, 9.6vw, 124px);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 900;
}

.hero-title .hero-line {
  display: block;
  white-space: nowrap;
}

.hero-title .hero-accent {
  color: var(--green);
  font-size: .92em;
  letter-spacing: -.055em;
  text-shadow:
    0 0 42px rgba(184,255,34,.24),
    0 0 90px rgba(184,255,34,.12);
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: linear-gradient(135deg, var(--green), #8fe500);
  color: #111704;
  box-shadow: 0 16px 50px rgba(184,255,34,.17);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.button-light {
  background: var(--text);
  color: #111704;
}

.hero-card {
  margin-top: 60px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(14px);
}

.hero-card-star {
  font-size: 30px;
  color: var(--green);
}

.hero-card div:last-child {
  display: flex;
  flex-direction: column;
}

.hero-card strong { font-size: 14px; }
.hero-card span { color: var(--muted); font-size: 12px; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.06em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: .25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,255,34,.68);
}

.number {
  margin-bottom: auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 30px;
  letter-spacing: -.04em;
}

.card p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
}

.about > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.join {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin-top: 70px;
  margin-bottom: 70px;
  padding: 68px;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--green), #8fe500);
  color: #111704;
  box-shadow: 0 16px 50px rgba(184,255,34,.17);
}

.join-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.join .eyebrow { color: rgba(17,23,4,.65); }
.join h2 { margin-bottom: 22px; }
.join p:not(.eyebrow) { font-size: 18px; }

.giant-star {
  position: absolute;
  right: -30px;
  bottom: -190px;
  font-size: 440px;
  line-height: 1;
  color: rgba(17,23,4,.14);
  transform: rotate(12deg);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.footer p { margin: 0; }
.footer p:last-child { text-align: right; }

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero h1 {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: clamp(39px, 11.4vw, 54px);
    line-height: .96;
    letter-spacing: -.065em;
  }
  .hero-title .hero-line { white-space: nowrap; }
  .hero-title .hero-accent {
    font-size: .9em;
    letter-spacing: -.045em;
  }
  .lead { max-width: 560px; font-size: 16px; line-height: 1.55; }
  .actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-card { width: 100%; margin-top: 34px; }
  .grid { grid-template-columns: 1fr; }
  .card { min-height: 230px; }
  .about { grid-template-columns: 1fr; gap: 30px; }
  .join { width: calc(100% - 24px); padding: 38px 24px; min-height: 500px; }
  .giant-star { font-size: 300px; bottom: -130px; }
  .footer { grid-template-columns: 1fr; }
  .footer p:last-child { text-align: left; }
}


.meta-notice {
  max-width: 760px;
  margin: 18px 0 0;
  color: #819075;
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .meta-notice {
    font-size: 10px;
  }
}







.section-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.card-link::after {
  content: "Открыть раздел →";
  margin-top: 18px;
  color: var(--green-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.subpage-hero {
  min-height: auto;
  padding-top: 42px;
}

.subpage-title {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 96px);
  line-height: .92;
  letter-spacing: -.07em;
}

.breadcrumbs {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--text);
  text-decoration: none;
}

.section-tight {
  padding-top: 12px;
}

.page-grid .card {
  min-height: 250px;
}

@media (max-width: 760px) {
  .section-note {
    font-size: 14px;
    line-height: 1.45;
  }

  .subpage-title {
    font-size: clamp(42px, 13vw, 70px);
  }

  .page-grid .card {
    min-height: 210px;
  }
}

@media (max-width: 360px) {
  .header { width: min(100% - 24px, 1180px); }
  .section { width: min(100% - 24px, 1180px); }
  .hero h1 { font-size: clamp(36px, 11vw, 42px); }
  .hero-title .hero-accent { font-size: .88em; }
}


/* ===== Полноценная навигация ===== */
.site-header {
  position: relative;
  z-index: 30;
  min-height: 82px;
  gap: 22px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.desktop-nav a,
.footer-nav a,
.footer-socials a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.footer-nav a:hover,
.footer-socials a:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  color: var(--text);
  display: inline-grid;
  place-items: center;
  font: inherit;
  font-size: 25px;
  cursor: pointer;
  transition: .2s ease;
}

.icon-button:hover {
  border-color: rgba(184,255,34,.55);
  background: rgba(184,255,34,.09);
  color: var(--green);
}

.menu-toggle {
  display: none;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before { top: -6px; }
.menu-lines::after { top: 6px; }

.mobile-nav {
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10,14,6,.97);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  backdrop-filter: blur(22px);
}

.mobile-nav a,
.mobile-search {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  text-align: left;
  font: inherit;
  font-size: 16px;
  font-weight: 750;
}

.mobile-nav a:last-of-type { border-bottom: 1px solid var(--line); }

.mobile-search {
  border-bottom: 0;
  color: var(--green);
  cursor: pointer;
}

/* ===== Фирменные зелёно-красные детали ===== */
body::before {
  content: "";
  position: fixed;
  top: 22%;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,36,.11), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.card:nth-child(2n)::before,
.material-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: .75;
}

.card {
  position: relative;
  overflow: hidden;
}


/* ===== Последние материалы ===== */
.latest-materials {
  padding-top: 74px;
}

.materials-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.material-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.material-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184,255,34,.48);
  box-shadow: 0 26px 70px rgba(0,0,0,.25);
}

.material-card::after {
  content: "✦";
  position: absolute;
  top: 20px;
  right: 24px;
  color: currentColor;
  font-size: 32px;
  opacity: .22;
}

.material-green {
  background:
    radial-gradient(circle at 86% 16%, rgba(184,255,34,.26), transparent 32%),
    linear-gradient(145deg, #18220d, #0c1107);
}

.material-red {
  background:
    radial-gradient(circle at 85% 12%, rgba(255,45,36,.28), transparent 34%),
    linear-gradient(145deg, #22100e, #0e0806);
}

.material-dark {
  background:
    radial-gradient(circle at 86% 14%, rgba(220,255,131,.13), transparent 31%),
    linear-gradient(145deg, #12170d, #080a06);
}

.material-light {
  background: linear-gradient(135deg, #d5ff72, #a8ef0d);
  color: var(--ink);
}

.material-light .material-kicker,
.material-light p,
.material-light .material-link {
  color: rgba(17,23,4,.7);
}

.material-kicker {
  margin-bottom: auto;
  color: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.material-red .material-kicker { color: var(--red-soft); }

.material-card h3 {
  max-width: 520px;
  margin: 38px 0 10px;
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1;
  letter-spacing: -.055em;
}

.material-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.material-link {
  margin-top: 24px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

/* ===== Поиск ===== */
.search-active {
  overflow: hidden;
}

.search-modal[hidden] {
  display: none;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: start center;
  padding: 7vh 18px 24px;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,5,2,.78);
  backdrop-filter: blur(12px);
}

.search-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: 86vh;
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(184,255,34,.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(184,255,34,.14), transparent 28rem),
    #0d1208;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}

.search-panel-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.search-panel h2 {
  margin: 4px 0 0;
  font-size: clamp(32px, 6vw, 56px);
}

.search-field {
  display: block;
  margin-top: 26px;
}

.search-field input {
  width: 100%;
  min-height: 64px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: none;
  background: rgba(255,255,255,.05);
  color: var(--text);
  font: inherit;
  font-size: 17px;
}

.search-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(184,255,34,.1);
}

.search-hint {
  margin: 10px 2px 20px;
  color: var(--muted);
  font-size: 12px;
}

.search-results {
  display: grid;
  gap: 8px;
}

.search-result {
  position: relative;
  padding: 18px 52px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  transition: .2s ease;
}

.search-result:hover {
  border-color: rgba(184,255,34,.4);
  background: rgba(184,255,34,.055);
}

.search-result-type {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.search-result strong {
  font-size: 18px;
}

.search-result p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.search-result-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--green);
  font-size: 22px;
  transform: translateY(-50%);
}

.search-empty {
  padding: 32px 20px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  display: grid;
  gap: 7px;
  color: var(--muted);
}

.search-empty strong { color: var(--text); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== Поделиться ===== */
.share-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 42px;
  align-items: end;
  padding-top: 28px;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.share-button {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: .2s ease;
}

.share-button:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.share-copy {
  background: var(--green);
  color: var(--ink);
  border-color: transparent;
}

.share-copy:hover {
  color: var(--ink);
  background: var(--green-soft);
}

.copy-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: -16px 0 0;
  color: var(--green-soft);
  font-size: 12px;
}

/* ===== Блок доверия ===== */
.trust-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 90px minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 95% 10%, rgba(255,45,36,.13), transparent 21rem),
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}

.trust-symbol {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: var(--green);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 35px;
  transform: rotate(-8deg);
}

.trust-section h2 {
  margin-bottom: 14px;
}

.trust-section p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.trust-points {
  display: grid;
  gap: 9px;
}

.trust-points span {
  position: relative;
  padding: 12px 14px 12px 36px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trust-points span::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--green);
}

/* ===== Расширенный подвал ===== */
.extended-footer {
  grid-template-columns: 1.2fr .7fr .7fr 1.6fr;
  align-items: start;
  padding-top: 46px;
  font-size: 13px;
}

.footer-brand,
.footer-nav,
.footer-socials,
.footer-legal {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-brand p,
.footer-legal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer-domain {
  color: var(--green);
  font-weight: 850;
}

.footer-nav strong,
.footer-socials strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 13px;
}

.footer-legal p:last-child {
  margin-top: 7px;
  color: var(--text);
  text-align: left;
}

/* ===== Адаптивность ===== */
@media (max-width: 940px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .header-telegram { display: none; }
  .trust-section {
    grid-template-columns: 78px 1fr;
  }
  .trust-points {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
  .extended-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .materials-heading {
    align-items: center;
  }
  .materials-grid {
    grid-template-columns: 1fr;
  }
  .material-card {
    min-height: 260px;
    padding: 25px;
  }
  .material-card h3 {
    font-size: 31px;
  }
  .search-modal {
    padding: 12px;
  }
  .search-panel {
    max-height: calc(100vh - 24px);
    padding: 22px 16px;
    border-radius: 24px;
  }
  .search-field input {
    min-height: 58px;
    font-size: 16px;
  }
  .share-section {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .share-actions {
    justify-content: flex-start;
  }
  .share-button {
    flex: 1 1 calc(50% - 10px);
  }
  .share-copy {
    flex-basis: 100%;
  }
  .trust-section {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
  .trust-symbol {
    width: 64px;
    height: 64px;
    border-radius: 19px;
  }
  .trust-points {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .extended-footer {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer-brand,
  .footer-legal {
    grid-column: 1 / -1;
  }
  .footer-legal p:last-child {
    text-align: left;
  }
}

@media (max-width: 410px) {
  .brand { font-size: 17px; }
  .header-actions { gap: 7px; }
  .icon-button { width: 43px; height: 43px; }
  .materials-heading { align-items: flex-start; }


/* ===== Первая новость: ПРЕМИУМ ПОДПИСКА ===== */
.news-heading,
.home-news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.news-count,
.text-link {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(184,255,34,.12), transparent 28rem),
    rgba(255,255,255,.025);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184,255,34,.48);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.news-card-image,
.home-news-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #111;
}

.news-card-image img,
.home-news-image img,
.article-cover img,
.article-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}

.news-card-body {
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  color: var(--green-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-card-body h2,
.home-news-copy h3 {
  margin: 18px 0 15px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: .98;
  letter-spacing: -.065em;
}

.news-card-body p,
.home-news-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.news-card-link {
  margin-top: 28px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.home-news-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 96% 10%, rgba(255,45,36,.13), transparent 24rem),
    linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  transition: .25s ease;
}

.home-news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184,255,34,.45);
}

.home-news-image {
  min-height: 370px;
}

.home-news-copy {
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-news-copy h3 {
  font-size: clamp(29px, 3.7vw, 48px);
}

/* Article */
.article-header {
  padding-top: 88px;
  padding-bottom: 40px;
}

.article-meta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.article-category {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
}

.article-title {
  max-width: 1120px;
  margin: 28px 0 24px;
  font-size: clamp(48px, 8vw, 105px);
  line-height: .89;
  letter-spacing: -.075em;
}

.article-lead {
  max-width: 850px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.45;
}

.article-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-cover {
  padding-top: 10px;
  padding-bottom: 30px;
}

.article-cover img {
  display: block;
  max-height: 760px;
  border-radius: 30px;
  box-shadow: 0 35px 100px rgba(0,0,0,.35);
}

.article-cover figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 54px;
  align-items: start;
  padding-top: 30px;
}

.article-content {
  max-width: 820px;
}

.article-content > p {
  margin: 0 0 24px;
  color: #d9e2d2;
  font-size: 18px;
  line-height: 1.75;
}

.article-content strong {
  color: var(--text);
}

.article-dropcap::first-letter {
  float: left;
  margin: 8px 12px 0 0;
  color: var(--green);
  font-size: 72px;
  font-weight: 900;
  line-height: .72;
}

.article-content h2 {
  margin: 54px 0 22px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.06em;
}

.article-highlight {
  position: relative;
  margin: 34px 0;
  padding: 28px 28px 28px 78px;
  border: 1px solid rgba(184,255,34,.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 0, rgba(184,255,34,.13), transparent 22rem),
    rgba(255,255,255,.025);
}

.article-highlight p {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.45;
}

.highlight-star {
  position: absolute;
  left: 25px;
  top: 27px;
  color: var(--green);
  font-size: 31px;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.article-gallery figure {
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0b0d09;
}

.article-gallery figure:first-child {
  grid-column: 1 / -1;
  min-height: 420px;
}

.article-gallery img {
  display: block;
  transition: transform .5s ease;
}

.article-gallery figure:hover img {
  transform: scale(1.025);
}

.watch-block {
  margin-top: 54px;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(255,45,36,.2), transparent 24rem),
    linear-gradient(135deg, #17220c, #0b0f07);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.watch-block h2 {
  margin: 8px 0 10px;
  font-size: clamp(31px, 4vw, 48px);
}

.watch-block p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.article-sources {
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 11px;
}

.article-sources h2 {
  margin: 0 0 10px;
  font-size: 32px;
}

.article-sources a {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.article-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 10px;
}

.article-info-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  display: grid;
  gap: 5px;
}

.article-info-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.article-info-card strong {
  color: var(--text);
  font-size: 14px;
}

.article-share {
  margin-top: 38px;
}

@media (max-width: 900px) {
  .news-card,
  .home-news-card {
    grid-template-columns: 1fr;
  }

  .news-card-image,
  .home-news-image {
    min-height: 330px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-content {
    max-width: none;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .news-heading,
  .home-news-heading {
    align-items: start;
  }

  .news-count,
  .text-link {
    white-space: nowrap;
  }

  .news-card-image,
  .home-news-image {
    min-height: 230px;
  }

  .news-card-body,
  .home-news-copy {
    padding: 24px 20px 28px;
  }

  .news-card-body h2,
  .home-news-copy h3 {
    font-size: 34px;
  }

  .article-header {
    padding-top: 58px;
  }

  .article-title {
    font-size: clamp(43px, 12vw, 58px);
    line-height: .93;
    letter-spacing: -.065em;
  }

  .article-title br {
    display: none;
  }

  .article-cover {
    width: 100%;
  }

  .article-cover img {
    min-height: 245px;
    border-radius: 0;
    object-fit: cover;
  }

  .article-cover figcaption {
    padding: 0 16px;
  }

  .article-layout {
    gap: 36px;
  }

  .article-content > p {
    font-size: 17px;
    line-height: 1.68;
  }

  .article-highlight {
    padding: 25px 20px 25px 62px;
  }

  .highlight-star {
    left: 20px;
    top: 24px;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }

  .article-gallery figure,
  .article-gallery figure:first-child {
    grid-column: auto;
    min-height: 230px;
  }

  .watch-block {
    padding: 26px 20px;
    align-items: stretch;
    flex-direction: column;
  }

  .watch-block .button {
    width: 100%;
  }

  .article-sidebar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  .news-count,
  .text-link {
    display: none;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-meta {
    gap: 8px 11px;
  }
}


/* ===== Заметная новая новость в начале сайта ===== */
.breaking-news {
  position: relative;
  z-index: 25;
  width: min(100% - 40px, 1180px);
  min-height: 66px;
  margin: 8px auto 0;
  padding: 11px 15px 11px 17px;
  border: 1px solid rgba(184,255,34,.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 50%, rgba(255,45,36,.18), transparent 24rem),
    linear-gradient(110deg, rgba(184,255,34,.18), rgba(184,255,34,.055));
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  color: var(--text);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.breaking-news:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background:
    radial-gradient(circle at 100% 50%, rgba(255,45,36,.22), transparent 24rem),
    linear-gradient(110deg, rgba(184,255,34,.23), rgba(184,255,34,.075));
}

.breaking-label {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.breaking-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255,45,36,.14);
  animation: breakingPulse 1.6s ease-in-out infinite;
}

.breaking-news strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(14px, 1.7vw, 18px);
}

.breaking-action {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--green);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
}

@keyframes breakingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.72); opacity: .62; }
}

.breaking-news + main .hero {
  padding-top: 42px;
}

.breaking-news + main .home-news-section {
  padding-top: 34px;
}

.breaking-news + main .home-news-card {
  box-shadow: 0 30px 90px rgba(0,0,0,.26);
}

@media (max-width: 760px) {
  .breaking-news {
    width: calc(100% - 24px);
    min-height: 0;
    margin-top: 4px;
    padding: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 11px;
    border-radius: 18px;
  }

  .breaking-label {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 30px;
    padding: 0 10px;
    font-size: 9px;
  }

  .breaking-news strong {
    white-space: normal;
    font-size: 14px;
    line-height: 1.28;
  }

  .breaking-action {
    min-height: 36px;
    padding: 0 11px;
    font-size: 10px;
  }

  .breaking-news + main .hero {
    padding-top: 30px;
  }

  .breaking-news + main .home-news-section {
    padding-top: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .breaking-dot {
    animation: none;
  }
}


/* Second news and image viewer */
.news-stack{display:grid;gap:18px}.image-open-button{position:relative;width:100%;height:100%;padding:0;overflow:hidden;border:0;background:transparent;color:var(--text);cursor:zoom-in;display:block}.image-open-button img{display:block;width:100%;height:100%;object-fit:cover}.image-open-button>span{position:absolute;right:14px;bottom:14px;min-height:38px;padding:0 13px;border-radius:999px;background:rgba(7,10,4,.82);color:var(--green);display:inline-flex;align-items:center;font-size:11px;font-weight:900;backdrop-filter:blur(10px)}.instagram-disclaimer{max-width:760px;margin-top:18px;padding:16px 18px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.025);color:var(--muted);font-size:11px;line-height:1.55}.lightbox-active{overflow:hidden}.image-lightbox[hidden]{display:none}.image-lightbox{position:fixed;inset:0;z-index:150;padding:22px;display:grid;place-items:center}.lightbox-backdrop{position:absolute;inset:0;border:0;background:rgba(2,3,2,.92);backdrop-filter:blur(16px);cursor:zoom-out}.lightbox-content{position:relative;z-index:1;max-width:min(1100px,100%);max-height:calc(100vh - 44px);display:grid;justify-items:center;gap:12px}.lightbox-content img{max-width:100%;max-height:calc(100vh - 110px);border-radius:18px;object-fit:contain;box-shadow:0 36px 110px rgba(0,0,0,.65)}.lightbox-close{position:absolute;top:-14px;right:-14px;z-index:2;width:46px;height:46px;border:1px solid rgba(255,255,255,.2);border-radius:50%;background:#10150a;color:var(--text);font-size:28px;cursor:pointer}.lightbox-original{padding:10px 15px;border-radius:999px;background:var(--green);color:var(--ink);font-size:12px;font-weight:900}@media(max-width:760px){.image-lightbox{padding:10px}.lightbox-content img{max-height:calc(100vh - 90px);border-radius:12px}.lightbox-close{top:7px;right:7px}.news-stack{gap:14px}}


/* ===== Счётчики разделов без декоративных ягод ===== */
.nav-count {
  margin-left: 3px;
  color: var(--green);
  font-size: .82em;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.mobile-nav .nav-count {
  margin-left: auto;
  min-width: 34px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(184,255,34,.1);
  text-align: center;
}

.section-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 29px;
  margin-left: 6px;
  padding: 0 9px;
  border: 1px solid rgba(184,255,34,.3);
  border-radius: 999px;
  background: rgba(184,255,34,.08);
  color: var(--green);
  font-size: .42em;
  font-weight: 900;
  letter-spacing: 0;
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
}

.inline-count {
  margin-left: 3px;
  color: var(--green);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.material-light .inline-count {
  color: var(--ink);
}

.title-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: .95em;
  height: .7em;
  margin-left: .08em;
  padding: 0 .18em;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-size: .34em;
  letter-spacing: 0;
  vertical-align: middle;
  transform: translateY(-.12em);
}

@media (max-width: 760px) {
  .section-count {
    min-width: 38px;
    min-height: 27px;
    font-size: .39em;
  }

  .title-count {
    font-size: .38em;
  }
}
