:root {
  --bg: #070808;
  --bg-soft: #0d0f10;
  --surface: #121416;
  --surface-raised: #191c1f;
  --surface-warm: #211c10;
  --text: #f7f5ee;
  --muted: #b7b4aa;
  --dim: #89877f;
  --gold: #f2c84b;
  --gold-strong: #ffd95e;
  --gold-dark: #33270c;
  --teal: #41c7c2;
  --violet: #8d74db;
  --line: rgba(242, 200, 75, 0.2);
  --line-soft: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  --radius-sm: 12px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans Bengali", "Hind Siliguri", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.78;
  overflow-wrap: anywhere;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--gold-strong);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #fff1a9;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 7vw, 5.5rem);
}

h2 {
  margin-top: 2.8em;
  font-size: clamp(1.75rem, 4vw, 3.15rem);
}

h3 {
  margin-top: 2em;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p,
ul,
ol {
  margin-top: 0;
  margin-bottom: 1.25em;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  top: 12px;
  left: 12px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: #fff;
  color: #111;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 8, 8, 0.94);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 22px;
}

.site-branding,
.brand-link,
.custom-logo-link {
  flex: 0 0 auto;
  min-width: 0;
  max-width: min(48vw, 220px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.custom-logo,
.custom-logo-link img,
.site-branding img,
.brand-logo img,
.footer-brand img,
.footer-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 56px;
  object-fit: contain;
}

.site-branding .brand-logo,
.footer-brand .brand-logo {
  width: 42px;
  max-width: 42px;
  height: 42px;
}

.footer-brand img,
.footer-logo img {
  max-width: 150px;
  max-height: 48px;
}

.brand-wordmark {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.primary-navigation {
  margin-left: auto;
}

.primary-navigation .menu,
.footer-navigation .menu {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-navigation a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
  background: var(--surface-raised);
  color: var(--text);
}

.header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-strong);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-action:hover {
  background: var(--gold);
  color: #171204;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
}

.menu-toggle > span:not(.screen-reader-text) {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.home-content > * {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.home-content > .alignfull {
  width: 100%;
  max-width: none;
}

.home-content > .wp-block-group {
  padding-block: clamp(64px, 9vw, 120px);
}

.home-content > .wp-block-group:nth-of-type(even):not(.hero-panel) {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--shell)) / 2));
  border-block: 1px solid var(--line-soft);
  background: var(--bg-soft);
}

.hero-panel {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  min-height: calc(100svh - 72px);
  padding: clamp(72px, 10vw, 132px) max(20px, calc((100vw - var(--shell)) / 2)) 76px !important;
  overflow: hidden;
  text-align: center;
}

.hero-panel::before {
  position: absolute;
  inset: -28% 20% auto;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 200, 75, 0.17), transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel .eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 14px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(242, 200, 75, 0.06);
  color: var(--gold-strong);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-panel h1 {
  max-width: 1040px;
  margin: 0 auto 22px;
}

.hero-panel .hero-lede {
  max-width: 860px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-panel .wp-block-buttons {
  justify-content: center;
  margin: 28px 0 42px;
}

.wp-block-button__link,
.button-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #171204;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(242, 200, 75, 0.2);
}

.wp-block-button__link:hover,
.button-link:hover {
  background: var(--gold-strong);
  color: #171204;
  transform: translateY(-1px);
}

.hero-panel figure {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.hero-panel figure img,
.content-visual img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-soft);
  border-radius: clamp(14px, 2vw, 26px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel figure img {
  max-height: 640px;
  object-fit: cover;
}

.snapshot-grid,
.quick-access,
.category-grid,
.decision-grid,
.issue-grid,
.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.snapshot-grid > *,
.quick-access > *,
.category-grid > *,
.decision-grid > *,
.issue-grid > *,
.status-grid > * {
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.snapshot-grid strong,
.quick-access strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-strong);
}

.quick-access a,
.category-grid a {
  display: block;
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
}

.section-lede {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
}

.content-visual {
  margin: clamp(32px, 6vw, 72px) 0;
}

.content-visual figcaption {
  margin-top: 12px;
  color: var(--dim);
  font-size: 0.82rem;
  text-align: center;
}

.wp-block-columns {
  gap: clamp(22px, 5vw, 60px);
  align-items: stretch !important;
}

.wp-block-column > :first-child {
  margin-top: 0;
}

.feature-card,
.note-card,
.warning-card,
.decision-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
}

.warning-card {
  border-color: var(--line);
  background: linear-gradient(135deg, var(--surface-warm), var(--surface));
}

.note-card {
  border-left: 4px solid var(--teal);
}

.steps-list {
  padding: 0;
  margin: 32px 0;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  position: relative;
  min-height: 76px;
  padding: 16px 18px 16px 78px;
  border-bottom: 1px solid var(--line-soft);
  counter-increment: steps;
}

.steps-list li::before {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #171204;
  content: counter(steps);
  font-weight: 900;
}

.wp-block-table {
  margin: 32px 0;
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.wp-block-table table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.wp-block-table th {
  background: var(--surface-raised);
  color: var(--gold-strong);
}

.wp-block-table tr:last-child td {
  border-bottom: 0;
}

.wp-block-details {
  max-width: 920px;
  padding: 0;
  margin: 12px auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.wp-block-details summary {
  position: relative;
  min-height: 58px;
  padding: 16px 56px 16px 20px;
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

.wp-block-details summary::-webkit-details-marker {
  display: none;
}

.wp-block-details summary::after {
  position: absolute;
  top: 13px;
  right: 16px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-dark);
  color: var(--gold-strong);
  content: "+";
}

.wp-block-details[open] summary::after {
  content: "−";
}

.wp-block-details > :not(summary) {
  padding-inline: 20px;
}

.wp-block-details > :last-child {
  padding-bottom: 20px;
}

.entry-header {
  padding: clamp(70px, 10vw, 120px) 0 36px;
  border-bottom: 1px solid var(--line-soft);
}

.entry-kicker {
  margin-bottom: 10px;
  color: var(--gold-strong);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.entry-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
}

.entry-content {
  max-width: 920px;
  padding: 48px 0 100px;
}

.entry-content > :first-child {
  margin-top: 0;
}

.entry-content > .alignwide {
  width: min(1100px, calc(100vw - 40px));
  max-width: none;
}

.entry-content .content-visual {
  width: min(1060px, calc(100vw - 40px));
}

.article-shell:has(.entry-content .alignwide),
.article-shell:has(.entry-content .content-visual) {
  max-width: 1180px;
}

.listing-shell,
.not-found {
  min-height: 60vh;
  padding-block: 80px 110px;
}

.listing-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-soft);
}

.listing-card {
  padding: 34px 0;
  border-bottom: 1px solid var(--line-soft);
}

.listing-card h2 {
  margin: 0 0 8px;
  font-size: 1.75rem;
}

.listing-card h2 a {
  color: var(--text);
  text-decoration: none;
}

.search-form {
  display: flex;
  max-width: 680px;
  gap: 10px;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
}

.search-form button {
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  background: var(--gold);
  color: #171204;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #090a0b;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  padding-block: 68px 50px;
}

.footer-brand p,
.footer-responsible p {
  max-width: 470px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-navigation h2,
.footer-responsible h2 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.footer-navigation .menu {
  align-items: flex-start;
  flex-direction: column;
}

.footer-navigation a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px 28px;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-size: 0.78rem;
}

.site-footer__bottom p {
  margin: 0;
}

.mobile-sticky-action {
  display: none;
}

@media (max-width: 1040px) {
  .primary-navigation a {
    padding-inline: 7px;
    font-size: 0.8rem;
  }

  .snapshot-grid,
  .quick-access,
  .category-grid,
  .decision-grid,
  .issue-grid,
  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    font-size: 17px;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-navigation {
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - 66px);
    overflow-y: auto;
    padding: 14px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: #0a0b0c;
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation .menu {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-navigation a {
    min-height: 48px;
    padding: 10px 14px;
    font-size: 1rem;
  }

  .header-action {
    order: 2;
    padding-inline: 12px;
  }

  .menu-toggle {
    order: 3;
  }

  .hero-panel {
    min-height: auto;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .mobile-sticky-action {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 120;
    display: block;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(7, 8, 8, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .mobile-sticky-action a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--gold);
    color: #171204;
    font-weight: 900;
    text-decoration: none;
  }

  body.home {
    padding-bottom: 82px;
  }
}

@media (max-width: 640px) {
  .shell,
  .home-content > * {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-branding,
  .brand-link,
  .custom-logo-link {
    max-width: min(58vw, 160px);
  }

  .custom-logo,
  .custom-logo-link img,
  .site-branding img,
  .brand-logo img,
  .footer-brand img,
  .footer-logo img {
    width: auto;
    height: auto;
    max-width: 140px;
    max-height: 44px;
    object-fit: contain;
  }

  .site-branding .brand-logo,
  .footer-brand .brand-logo {
    width: 38px;
    max-width: 38px;
    height: 38px;
  }

  .brand-wordmark {
    font-size: 0.96rem;
  }

  .header-action {
    display: none;
  }

  .hero-panel {
    padding-inline: 14px !important;
    padding-top: 56px !important;
  }

  .hero-panel h1 {
    font-size: clamp(2.15rem, 13vw, 3.7rem);
  }

  .snapshot-grid,
  .quick-access,
  .category-grid,
  .decision-grid,
  .issue-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .wp-block-columns {
    gap: 18px;
  }

  .entry-content {
    padding-top: 34px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    padding-bottom: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
