:root {
  --ink: #211426;
  --muted: #67566c;
  --paper: #fffaf0;
  --surface: #ffffff;
  --soft: #f7f0fb;
  --purple: #5d006b;
  --purple-2: #8720a4;
  --gold: #ffd45a;
  --gold-2: #b77818;
  --green: #0f8f72;
  --line: rgba(65, 22, 76, .14);
  --shadow: 0 18px 45px rgba(54, 18, 72, .13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans Bengali", "Hind Siliguri", system-ui, sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar { background: #211426; color: #fff; }
.topbar-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  min-width: 118px;
  min-height: 42px;
  padding: 5px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffd45a, #a951ff 72%);
  color: #170b1d;
  font-weight: 900;
  font-size: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
.brand-copy { font-weight: 700; color: #f7eefd; white-space: nowrap; }
.quick-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.pill, .btn, .section-link, .readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 9px 16px;
  font-weight: 800;
}
.pill.gold, .btn.primary, .section-link { background: linear-gradient(135deg, var(--gold), #ffb231); color: #2a1800; box-shadow: 0 12px 28px rgba(183,120,24,.2); }
.pill.ghost, .btn.secondary { border: 1px solid rgba(255,255,255,.42); color: #fff; background: rgba(255,255,255,.08); }
.nav { position: sticky; top: 0; z-index: 20; background: linear-gradient(90deg, var(--purple), #7f1997); box-shadow: 0 10px 25px rgba(45,0,55,.17); }
.nav-scroll { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.nav-scroll::-webkit-scrollbar { display: none; }
.nav a { color: #fff; padding: 15px 14px; font-weight: 800; white-space: nowrap; border-bottom: 3px solid transparent; }
.nav a.active, .nav a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.hero { position: relative; min-height: 620px; color: #fff; overflow: hidden; display: grid; align-items: center; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24,10,31,.93), rgba(93,0,107,.72) 47%, rgba(24,10,31,.35)),
    url("/assets/we368-hero.png") center/cover no-repeat;
}
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(260px, .55fr); gap: 28px; align-items: end; padding: 88px 0; }
.eyebrow { display: inline-flex; color: var(--gold); font-weight: 900; margin-bottom: 10px; }
.hero h1, .inner-hero h1, .article-hero h1 { margin: 0; font-size: clamp(2.25rem, 5.7vw, 5.2rem); line-height: 1.02; max-width: 760px; }
.hero p { max-width: 690px; font-size: 1.2rem; color: #fff4df; margin: 24px 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-panel {
  justify-self: end;
  width: min(340px, 100%);
  border-radius: 8px;
  background: rgba(255,250,240,.94);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255,212,90,.45);
}
.hero-panel span, .hero-panel em { color: var(--muted); font-style: normal; }
.hero-panel strong { font-size: 1.55rem; color: var(--purple); }
.notice { margin-top: -34px; position: relative; z-index: 5; }
.notice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.notice-card strong { color: var(--purple); font-size: 1.35rem; font-weight: 900; }
.notice-card p { margin: 0; color: var(--muted); }
.notice-card a { color: var(--purple); font-weight: 900; }
.intro-band { background: var(--paper); padding: 78px 0; }
.intro-grid, .feature-grid, .inner-hero-grid, .article-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); gap: 34px; align-items: center; }
h2 { margin: 0 0 14px; font-size: clamp(1.75rem, 3vw, 2.7rem); line-height: 1.18; }
p { margin: 0 0 16px; }
.summary-list { display: grid; gap: 12px; }
.summary-list div, .side-note, .rich-text, details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(64,24,75,.08);
}
.summary-list div { padding: 18px; }
.summary-list strong { display: block; color: var(--purple); font-size: 1.2rem; }
.summary-list span { color: var(--muted); }
.section { padding: 82px 0; }
.section.muted { background: var(--soft); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.section-head h2 { margin-bottom: 0; }
.category-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.category-card, .article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(65,22,76,.1);
  overflow: hidden;
}
.card-media { display: block; aspect-ratio: 1 / .74; overflow: hidden; background: #2a0c35; }
.card-media img, .article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.category-card:hover img, .article-card:hover img, .feature-media:hover img { transform: scale(1.04); }
.category-body { padding: 16px; }
.category-body h3, .article-card h3 { margin: 0 0 8px; font-size: 1.15rem; line-height: 1.35; }
.category-body p, .article-card p { color: var(--muted); font-size: .96rem; }
.mini-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.mini-list span, .tag {
  display: inline-flex;
  border-radius: 8px;
  padding: 5px 9px;
  background: #fff4c8;
  color: #613c00;
  font-weight: 800;
  font-size: .82rem;
}
.feature-band { background: linear-gradient(135deg, #2b0b34, #671178); color: #fff; padding: 84px 0; }
.feature-copy p { color: #f7eefd; }
.feature-media { border-radius: 8px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.32); }
.feature-media img { width: 100%; aspect-ratio: 1 / .78; object-fit: cover; transition: transform .35s ease; }
.step-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.step-list li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 14px; border-radius: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); }
.step-list span { grid-row: span 2; width: 42px; height: 42px; border-radius: 8px; display: grid; place-items: center; background: var(--gold); color: #2a1800; font-weight: 900; }
.step-list strong { align-self: end; }
.step-list p { grid-column: 2; margin: 0; font-size: .94rem; }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.article-img { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #2a0c35; }
.article-card > div { padding: 18px; }
.readmore { padding: 0; min-height: auto; color: var(--purple); justify-content: flex-start; }
.faq-grid { display: grid; gap: 14px; }
details { padding: 18px 20px; }
summary { cursor: pointer; font-weight: 900; color: var(--purple); }
details p { color: var(--muted); margin: 10px 0 0; }
.inner-hero, .article-hero { background: linear-gradient(135deg, #26082f, #6b147e); color: #fff; padding: 72px 0; }
.inner-hero p, .article-hero p { color: #fff0db; max-width: 680px; }
.inner-hero img, .article-hero img { border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,.28); aspect-ratio: 1 / .78; object-fit: cover; width: 100%; }
.content-grid, .article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 24px; align-items: start; }
.rich-text { padding: 28px; }
.rich-text p { color: var(--muted); font-size: 1.05rem; }
.rich-text ul { margin: 18px 0 0; padding-left: 1.2rem; color: var(--ink); font-weight: 800; }
.rich-text li + li { margin-top: 8px; }
.side-note { padding: 22px; position: sticky; top: 78px; }
.side-note h2 { font-size: 1.35rem; }
.side-note p { color: var(--muted); }
.side-note a:not(.btn) { display: block; padding: 10px 0; color: var(--purple); font-weight: 800; border-top: 1px solid var(--line); }
.article-hero .crumb { display: inline-flex; margin-bottom: 12px; color: var(--gold); font-weight: 900; }
.footer { background: #1f1325; color: #f7eefd; padding-top: 52px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 34px; }
.footer-brand { font-size: 1.7rem; font-weight: 900; color: var(--gold); }
.footer h2 { font-size: 1.15rem; color: #fff; }
.footer p { color: #d8c8dd; }
.footer a:not(.footer-brand) { display: block; color: #d8c8dd; margin: 8px 0; }
.copybar { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 16px; margin-top: 36px; color: #d8c8dd; }
@media (max-width: 1080px) {
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .wrap { width: min(100% - 22px, 1180px); }
  .topbar-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .quick-actions { justify-content: flex-start; }
  .hero { min-height: 560px; }
  .hero-inner, .intro-grid, .feature-grid, .inner-hero-grid, .article-hero-grid, .content-grid, .article-layout, .footer-grid { grid-template-columns: 1fr; }
  .hero h1, .inner-hero h1, .article-hero h1 { font-size: clamp(2.05rem, 12vw, 3.4rem); }
  .hero-panel { justify-self: start; }
  .notice-card { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .category-grid, .article-grid { grid-template-columns: 1fr; }
  .side-note { position: static; }
}
@media (max-width: 420px) {
  .brand-mark { min-width: 104px; font-size: 1.18rem; }
  .brand-copy { white-space: normal; }
  .pill, .btn, .section-link { width: 100%; }
  .hero-actions { flex-direction: column; }
}