/* MoPD Shock — all inner pages + legacy component bridge */

/* Inner pages: solid header */
body.site-shock:not([data-page="home"]) .sx-header .sx-header__bar {
  background: rgba(6, 10, 8, 0.97);
}

body.site-shock:not([data-page="home"]) .sx-brand__logo {
  filter: brightness(0) invert(1);
}

/* Page shell */
.sx-page {
  padding-top: 96px;
  min-height: 100vh;
}

.sx-page .container {
  width: var(--sx-wrap);
  margin-inline: auto;
  max-width: none;
  padding-inline: 0;
}

/* Inner hero */
.sx-page .page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 72px) 0 clamp(40px, 6vw, 56px);
  background: var(--sx-bg);
  color: var(--sx-text);
}

.sx-page .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(0, 230, 118, 0.12), transparent),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(232, 197, 71, 0.06), transparent);
  pointer-events: none;
}

.sx-page .page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.4), transparent);
}

.sx-page .page-hero .container {
  position: relative;
  z-index: 1;
}

.sx-page .page-hero__title {
  font-family: var(--sx-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  max-width: 820px;
}

.sx-page .page-hero__desc {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--sx-text-muted);
  max-width: 640px;
  line-height: 1.65;
}

.sx-page .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--sx-text-muted);
  margin-bottom: 20px;
}

.sx-page .breadcrumb a:hover { color: var(--sx-accent); }

.sx-page .page-body {
  padding: clamp(48px, 8vw, 80px) 0 clamp(64px, 10vw, 96px);
  background: var(--sx-bg-light);
}

.sx-page .page-hero {
  background: var(--cv-primary, var(--sx-bg));
}

.sx-page .page-body--narrow .container {
  max-width: 760px;
}

/* Buttons bridge */
.sx-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--sx-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: transform 0.25s var(--sx-ease), box-shadow 0.25s, background 0.25s;
  cursor: pointer;
}

.sx-page .btn--primary {
  background: var(--sx-accent);
  color: var(--sx-bg);
}

.sx-page .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 230, 118, 0.35);
}

.sx-page .btn--outline {
  border-color: var(--sx-line-dark);
  background: var(--sx-surface);
  color: var(--sx-ink);
}

.sx-page .btn--outline:hover {
  border-color: var(--sx-accent);
  color: var(--sx-accent-dim);
}

/* Section titles */
.sx-page .section-title {
  font-family: var(--sx-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--sx-ink);
  letter-spacing: -0.02em;
}

.sx-page .section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sx-accent-dim);
  margin-bottom: 12px;
}

.sx-page .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sx-ink);
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* Reveal (legacy .reveal) */
.sx-page .reveal,
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--sx-ease), transform 0.75s var(--sx-ease);
}

.sx-page .reveal.visible,
.reveal.visible,
.sx-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---- About page ---- */
.sx-page .about__tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 5px;
  background: rgba(10, 15, 12, 0.06);
  border-radius: 999px;
  margin-bottom: 40px;
}

.sx-page .about__tab {
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sx-ink-muted);
  transition: all 0.25s;
}

.sx-page .about__tab.active {
  background: var(--sx-surface);
  color: var(--sx-accent-dim);
  box-shadow: var(--shadow-sm, 0 4px 16px rgba(0,0,0,0.06));
}

.sx-page .about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sx-page .about__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.sx-page .about__panel {
  display: none;
  animation: panelFade 0.45s var(--sx-ease);
}

.sx-page .about__panel.active {
  display: block;
}

.sx-page .about__text p {
  color: var(--sx-ink-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.sx-page .about__card {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--sx-line-dark);
  background: var(--sx-surface);
  margin-top: 16px;
  transition: transform 0.35s var(--sx-ease);
}

.sx-page .about__card:hover { transform: translateY(-4px); }

.sx-page .about__card--accent {
  border-color: rgba(0, 230, 118, 0.25);
  background: rgba(0, 230, 118, 0.06);
}

.sx-page .about__card-icon {
  color: var(--sx-accent-dim);
  margin-bottom: 12px;
}

.sx-page .about__card h4 {
  font-family: var(--sx-display);
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--sx-ink);
}

@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.sx-page .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sx-page .value-card {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.35s var(--sx-ease), box-shadow 0.35s;
}

.sx-page .value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.sx-page .mission-quote {
  border-left: 3px solid var(--sx-accent);
  background: rgba(0, 230, 118, 0.06);
  padding: 28px;
  border-radius: 0 12px 12px 0;
}

.sx-page .organogram__node {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 12px;
  padding: 16px;
}

/* ---- Contact ---- */
.sx-page .contact-page__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.sx-page .contact-form {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.sx-page .contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sx-page .contact-form .field--full {
  grid-column: 1 / -1;
}

.sx-page .contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sx-ink);
  margin-bottom: 6px;
}

.sx-page .contact-form input,
.sx-page .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sx-line-dark);
  border-radius: 8px;
  font: inherit;
  background: var(--sx-bg-light);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sx-page .contact-form input:focus,
.sx-page .contact-form textarea:focus {
  outline: none;
  border-color: var(--sx-accent);
  box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
}

.sx-page .contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.sx-page .contact-form__captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sx-page .contact-form__error {
  font-size: 0.8rem;
  color: #c62828;
  margin-top: 4px;
}

.sx-page .contact-form__alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.sx-page .contact-form__alert--success {
  background: rgba(0, 230, 118, 0.12);
  color: #1b5e20;
}

.sx-page .contact-form__alert--error {
  background: rgba(198, 40, 40, 0.1);
  color: #b71c1c;
}

.sx-page .contact__info {
  background: var(--sx-bg);
  color: var(--sx-text);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 36px);
}

.sx-page .contact__info .section-tag {
  color: var(--sx-accent);
}

.sx-page .contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sx-page .contact__list li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.sx-page .contact__list strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sx-text-muted);
  margin-bottom: 4px;
}

.sx-page .contact__list a { color: var(--sx-accent); }

.sx-page .contact__map iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 12px;
  margin-top: 20px;
}

/* ---- News list ---- */
.sx-page .news-search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 12px;
}

.sx-page .news-search__input,
.sx-page .news-search__date {
  flex: 1;
  min-width: 160px;
  padding: 12px 14px;
  border: 1px solid var(--sx-line-dark);
  border-radius: 8px;
  font: inherit;
}

.sx-page .news-search__clear {
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8125rem;
  background: transparent;
  border: 1px solid var(--sx-line-dark);
  color: var(--sx-ink-muted);
}

.sx-page .news-page__results,
.sx-page .news-page__empty {
  font-size: 0.875rem;
  color: var(--sx-ink-muted);
  margin-bottom: 20px;
}

.sx-page .news-card[hidden],
.sx-page .news-card.is-filtered-out {
  display: none !important;
}

.sx-page .news-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  transition: transform 0.5s var(--sx-ease);
}

.sx-page .news-card:hover .news-card__placeholder { transform: scale(1.05); }

.sx-page .news-card__placeholder--1 {
  background: linear-gradient(135deg, #0a2e1a, #1a6b42);
}

.sx-page .news-card__placeholder--2 {
  background: linear-gradient(135deg, #0a2840, #1a5a8a);
}

.sx-page .news-card__placeholder--3 {
  background: linear-gradient(135deg, #3d2a0a, #8a6a1a);
}

.sx-page .news-sidebar__block + .news-sidebar__block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--sx-line-dark);
}

.sx-page .news-sidebar__title {
  font-family: var(--sx-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--sx-ink);
}

.sx-page .news-categories {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sx-page .news-categories__btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--sx-ink-muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.sx-page .news-categories__btn:hover {
  background: rgba(18, 163, 92, 0.1);
  color: var(--sx-accent-dim);
}

.sx-page .news-categories__btn.active {
  background: var(--cv-accent-bright, var(--sx-accent));
  color: var(--cv-white, #fff);
}

.sx-page .news-recent {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sx-page .news-recent__item a {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sx-line-dark);
}

.sx-page .news-recent__item:last-child a {
  padding-bottom: 0;
  border-bottom: none;
}

.sx-page .news-recent__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--sx-ink);
  margin-bottom: 4px;
}

.sx-page .news-recent__item a:hover .news-recent__title {
  color: var(--sx-accent-dim);
}

.sx-page .news-recent__item time {
  font-size: 0.75rem;
  color: var(--sx-ink-muted);
}

.sx-page .news-search__btn {
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8125rem;
  border: none;
  cursor: pointer;
  background: var(--sx-accent);
  color: var(--sx-bg);
}

.sx-page .news-page__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

.sx-page .news-page__sidebar {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 14px;
  padding: 24px;
  position: sticky;
  top: 110px;
}

.sx-page .news-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.sx-page .news-card__body time {
  font-size: 0.8rem;
  color: var(--sx-ink-muted);
  display: block;
  margin-bottom: 4px;
}

.sx-page .news-card__excerpt {
  font-size: 0.875rem;
  color: var(--sx-ink-muted);
  line-height: 1.55;
  margin: 8px 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sx-page .news-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sx-accent-dim);
}

.sx-page .news-card__link:hover {
  color: var(--sx-accent);
}

@media (min-width: 960px) {
  .sx-page .news-page__layout .news-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sx-page .news-card {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s var(--sx-ease), box-shadow 0.35s;
}

.sx-page .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.sx-page .news-card__image {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.sx-page .news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--sx-ease);
}

.sx-page .news-card:hover .news-card__image img {
  transform: scale(1.05);
}

.sx-page .news-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--sx-bg);
  color: var(--sx-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
}

.sx-page .news-card__body {
  padding: 20px;
}

.sx-page .news-card__body h3 {
  font-family: var(--sx-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 8px 0;
}

.sx-page .news-card__body h3 a { color: var(--sx-ink); }

.sx-page .news-sidebar {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 14px;
  padding: 24px;
  position: sticky;
  top: 110px;
}

.sx-page .news-sidebar h3 {
  font-family: var(--sx-display);
  font-size: 1rem;
  margin-bottom: 16px;
}

.sx-page .news-sidebar__btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  margin-bottom: 6px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sx-ink-muted);
  transition: background 0.2s, color 0.2s;
}

.sx-page .news-sidebar__btn.active,
.sx-page .news-sidebar__btn:hover {
  background: rgba(0, 230, 118, 0.1);
  color: var(--sx-accent-dim);
}

.sx-page .pagination {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.sx-page .pagination a,
.sx-page .pagination span,
.sx-page .pagination__link,
.sx-page .pagination__status {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--sx-line-dark);
  background: var(--sx-surface);
  display: inline-flex;
  align-items: center;
}

.sx-page .pagination a:hover {
  border-color: var(--sx-accent);
  color: var(--sx-accent-dim);
}

.sx-page .pagination .current {
  background: var(--sx-accent);
  color: var(--sx-bg);
  border-color: var(--sx-accent);
}

/* ---- Article detail ---- */
.sx-page .article-page__tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 230, 118, 0.15);
  color: var(--sx-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 16px;
}

.sx-page .article-page__body {
  background: var(--sx-surface);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--sx-line-dark);
}

.sx-page .article-page__hero-img {
  margin-bottom: 28px;
  border-radius: 12px;
  overflow: hidden;
}

.sx-page .article-page__body p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
  color: var(--sx-ink-muted);
}

/* ---- Leadership ---- */
.sx-page .leaders-page__grid,
.sx-page .leadership__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.sx-page .leader-card {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s var(--sx-ease), box-shadow 0.35s;
}

.sx-page .leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.sx-page .leader-card__photo {
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.sx-page .leader-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sx-page .leader-card__info {
  padding: 20px;
}

.sx-page .leader-card__info h3 a {
  font-family: var(--sx-display);
  font-weight: 600;
  color: var(--sx-ink);
}

.sx-page .leader-card__role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sx-accent-dim);
}

/* ---- Documents / procurement / vacancies ---- */
.sx-page .doc-library {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
  padding: 18px 0 4px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.sx-page .doc-library__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sx-page .doc-library__header strong {
  color: var(--sx-ink);
  font-size: 1rem;
}

.sx-page .doc-library__header span {
  color: var(--sx-ink-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.sx-page .doc-library__search {
  position: relative;
  max-width: 760px;
}

.sx-page .doc-library__search::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(15, 23, 42, 0.42);
  border-radius: 50%;
  transform: translateY(-55%);
  pointer-events: none;
}

.sx-page .doc-library__search::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 32px;
  width: 8px;
  height: 2px;
  background: rgba(15, 23, 42, 0.42);
  transform: rotate(45deg);
  transform-origin: left center;
  pointer-events: none;
}

.sx-page .doc-library__input {
  width: 100%;
  min-height: 54px;
  padding: 14px 18px 14px 46px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
  color: var(--sx-ink);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.sx-page .doc-library__input:focus {
  outline: none;
  border-color: rgba(0, 166, 81, 0.42);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.13), 0 12px 34px rgba(15, 23, 42, 0.08);
}

.sx-page .doc-library__input::placeholder {
  color: rgba(15, 23, 42, 0.46);
}

.sx-page .doc-library__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sx-page .doc-library__filter {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--sx-line-dark);
  border-radius: 999px;
  color: var(--sx-ink-muted);
  background: var(--sx-surface);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.sx-page .doc-library__filter span {
  margin-left: 6px;
}

.sx-page .doc-library__filter:hover,
.sx-page .doc-library__filter.is-active {
  border-color: rgba(0, 230, 118, 0.45);
  color: var(--sx-ink);
  background: rgba(0, 230, 118, 0.09);
}

.sx-page .doc-library__empty {
  color: var(--sx-ink-muted);
}

.sx-page .doc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sx-page .doc-list__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 12px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sx-page .doc-list__item:hover {
  transform: translateX(6px);
  border-color: rgba(0, 230, 118, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.sx-page .doc-list__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 230, 118, 0.1);
  color: var(--sx-accent-dim);
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 10px;
}

.sx-page .doc-list__item h3 a {
  font-family: var(--sx-display);
  font-weight: 600;
  color: var(--sx-ink);
}

.sx-page .doc-list__meta {
  font-size: 0.8125rem;
  color: var(--sx-ink-muted);
  margin: 6px 0;
}

.sx-page .doc-list__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.sx-page .doc-list__actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--sx-line-dark);
  border-radius: 8px;
  color: var(--sx-ink);
  background: rgba(0, 230, 118, 0.07);
  font-size: 0.85rem;
  font-weight: 700;
}

.sx-page .doc-list__actions a:hover {
  border-color: rgba(0, 230, 118, 0.45);
}

/* ---- FAQ ---- */
.sx-page .faq-shell {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.sx-page .faq-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
  padding: 20px;
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.sx-page .faq-panel label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--sx-ink);
  text-transform: uppercase;
}

.sx-page .faq-search {
  position: relative;
}

.sx-page .faq-search::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(15, 23, 42, 0.42);
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}

.sx-page .faq-search::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 30px;
  width: 8px;
  height: 2px;
  background: rgba(15, 23, 42, 0.42);
  transform: rotate(45deg);
  transform-origin: left center;
  pointer-events: none;
}

.sx-page .faq-search input {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px 13px 42px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--sx-ink);
  font: inherit;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.sx-page .faq-search input:focus {
  outline: none;
  border-color: rgba(0, 166, 81, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.13), 0 10px 26px rgba(15, 23, 42, 0.08);
}

.sx-page .faq-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sx-page .faq-topic {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--sx-line-dark);
  border-radius: 999px;
  background: #fff;
  color: var(--sx-ink-muted);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.sx-page .faq-topic:hover,
.sx-page .faq-topic.is-active {
  border-color: rgba(0, 230, 118, 0.45);
  color: var(--sx-ink);
  background: rgba(0, 230, 118, 0.09);
}

.sx-page .faq-list {
  display: grid;
  gap: 12px;
}

.sx-page .faq-item {
  overflow: hidden;
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.sx-page .faq-item[hidden] {
  display: none;
}

.sx-page .faq-item[open] {
  border-color: rgba(0, 166, 81, 0.3);
}

.sx-page .faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 18px 58px 18px 22px;
  color: var(--sx-ink);
  font-family: var(--sx-display);
  font-weight: 700;
  cursor: pointer;
}

.sx-page .faq-item summary::-webkit-details-marker {
  display: none;
}

.sx-page .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.1);
  color: var(--sx-accent-dim);
  font-family: var(--sx-display);
  font-size: 1.2rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.sx-page .faq-item[open] summary::after {
  content: "-";
}

.sx-page .faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--sx-ink-muted);
  line-height: 1.7;
}

.sx-page .faq-item p a {
  color: var(--sx-accent-dim);
  font-weight: 800;
}

.sx-page .faq-empty {
  padding: 28px;
  text-align: center;
  color: var(--sx-ink-muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: 12px;
}

.pdf-preview {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pdf-preview.is-open {
  display: flex;
}

.pdf-preview__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 10, 0.76);
  backdrop-filter: blur(6px);
}

.pdf-preview__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 96vw);
  height: min(820px, 90vh);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--sx-line-dark);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.pdf-preview__header,
.pdf-preview__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.pdf-preview__footer {
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  border-bottom: 0;
}

.pdf-preview__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--sx-accent-dim);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdf-preview__header h2 {
  color: var(--sx-ink);
  font-family: var(--sx-display);
  font-size: 1.02rem;
  line-height: 1.35;
}

.pdf-preview__close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 50%;
  background: #fff;
  color: var(--sx-ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.pdf-preview__frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(15, 23, 42, 0.06);
}

.pdf-preview__footer p {
  margin: 0;
  color: var(--sx-ink-muted);
  font-size: 0.88rem;
}

.pdf-preview__open {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  border-radius: 8px;
  background: var(--sx-accent-dim);
  color: #06240f;
  font-weight: 800;
}

@media (max-width: 720px) {
  .pdf-preview {
    padding: 10px;
  }

  .pdf-preview__dialog {
    width: 100%;
    height: 94vh;
    border-radius: 10px;
  }

  .pdf-preview__header,
  .pdf-preview__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .pdf-preview__close {
    position: absolute;
    top: 12px;
    right: 12px;
  }
}

/* Doc tabs — JS-driven (initClimateDocTabs in shock.js) */
.sx-page .doc-tabs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sx-page .doc-tabs__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sx-page .doc-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sx-line-dark);
  position: sticky;
  top: 100px;
  z-index: 10;
  background: var(--sx-bg-light);
  padding-top: 8px;
}

.sx-page .doc-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--sx-line-dark);
  background: var(--sx-surface);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.sx-page .doc-tabs__btn:hover {
  border-color: var(--sx-accent);
}

.sx-page .doc-tabs__btn.is-active {
  background: var(--sx-accent);
  border-color: var(--sx-accent);
  color: var(--sx-bg);
  box-shadow: 0 8px 24px rgba(0, 230, 118, 0.3);
}

.sx-page .doc-tabs__btn.is-active .doc-tabs__count {
  background: rgba(0, 0, 0, 0.15);
  color: inherit;
}

.sx-page .doc-tabs__panel {
  display: none;
  animation: panelFade 0.4s var(--sx-ease);
}

.sx-page .doc-tabs__panel.is-active {
  display: block;
}

.sx-page .doc-tabs__count {
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---- Search page ---- */
.sx-page .site-search {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--sx-surface);
  border-radius: 14px;
  border: 1px solid var(--sx-line-dark);
}

.sx-page .site-search__input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 1px solid var(--sx-line-dark);
  border-radius: 8px;
  font: inherit;
}

.sx-page .site-search__section {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--sx-surface);
  border-radius: 12px;
  border: 1px solid var(--sx-line-dark);
}

.sx-page .site-search__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.sx-page .site-search__filter {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--sx-line-dark);
  border-radius: 999px;
  color: var(--sx-ink-muted);
  background: var(--sx-surface);
  font-size: 0.9rem;
  font-weight: 700;
}

.sx-page .site-search__filter:hover,
.sx-page .site-search__filter.is-active {
  border-color: rgba(0, 230, 118, 0.45);
  color: var(--sx-ink);
  background: rgba(0, 230, 118, 0.09);
}

.sx-page .site-search__list a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--sx-line-dark);
  font-weight: 500;
  color: var(--sx-ink);
}

.sx-page .site-search__snippet,
.sx-page .site-search__meta {
  margin: 6px 0 0;
  color: var(--sx-ink-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.sx-page .site-search__meta {
  font-size: 0.84rem;
  font-weight: 700;
}

.sx-page .site-search__highlight {
  padding: 0 0.14em;
  border-radius: 4px;
  color: var(--sx-ink);
  background: rgba(0, 230, 118, 0.28);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.sx-page .site-search__list a:hover {
  color: var(--sx-accent-dim);
  padding-left: 8px;
  transition: padding 0.2s;
}

/* ---- Gallery ---- */
.sx-page .gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.sx-page .gallery__item {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--sx-line-dark);
  transition: transform 0.35s var(--sx-ease);
}

.sx-page .gallery__item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.sx-page .gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
}

.sx-page .site-search__summary,
.sx-page .site-search__empty {
  margin-bottom: 24px;
  color: var(--sx-ink-muted);
  font-size: 0.95rem;
}

.sx-page .site-search__key {
  font-weight: 600;
  color: var(--sx-accent-dim);
}

/* ---- Gallery albums ---- */
.sx-page .gallery-album + .gallery-album {
  margin-top: 48px;
}

.sx-page .gallery-album__date {
  font-family: var(--sx-display);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--sx-ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 230, 118, 0.2);
}

.sx-page button.gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  text-align: left;
}

/* ---- Content blocks ---- */
.sx-page .page-section + .page-section {
  margin-top: 48px;
}

.sx-page .media-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
}

.sx-page .media-frame img,
.sx-page .content-img {
  width: 100%;
  height: auto;
  display: block;
}

.sx-page .prose p,
.sx-page .legal-prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: var(--sx-ink-muted);
}

.sx-page .climate-framework__card h3 {
  font-family: var(--sx-display);
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--sx-ink);
}

.sx-page .coming-soon {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 24px 64px;
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 16px;
}

.sx-page .coming-soon__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.1);
  color: var(--sx-accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sx-page .coming-soon__title {
  font-family: var(--sx-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--sx-ink);
  margin-bottom: 12px;
}

.sx-page .coming-soon__desc {
  color: var(--sx-ink-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.sx-page .contact-form__captcha-row img {
  border-radius: 8px;
  border: 1px solid var(--sx-line-dark);
}

.sx-page .contact-form__captcha-input {
  flex: 1;
  min-width: 120px;
  padding: 12px 14px;
  border: 1px solid var(--sx-line-dark);
  border-radius: 8px;
  font: inherit;
}

/* ---- Legal / prose ---- */
.sx-page .legal-prose h2 {
  font-family: var(--sx-display);
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--sx-ink);
}

.sx-page .legal-prose p,
.sx-page .legal-prose li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.sx-page .climate-framework {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.sx-page .climate-framework__card {
  background: var(--sx-surface);
  border: 1px solid var(--sx-line-dark);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s;
}

.sx-page .climate-framework__card:hover {
  transform: translateY(-4px);
}

/* Empty states */
.sx-page .empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--sx-ink-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .sx-page .about__grid,
  .sx-page .contact-page__grid,
  .sx-page .faq-shell,
  .sx-page .news-page__layout { grid-template-columns: 1fr; }
  .sx-page .news-page__grid { grid-template-columns: 1fr; }
  .sx-page .values-grid { grid-template-columns: repeat(2, 1fr); }
  .sx-page .faq-panel { position: static; }
}

@media (max-width: 640px) {
  .sx-page .contact-form__grid,
  .sx-page .values-grid { grid-template-columns: 1fr; }
}
