:root {
  --bg: #15061f;
  --bg-2: #230a34;
  --panel: rgba(39, 12, 56, 0.82);
  --panel-2: rgba(71, 25, 83, 0.72);
  --line: rgba(255, 192, 92, 0.22);
  --gold: #ffc35a;
  --gold-2: #ff8d28;
  --pink: #dd4cff;
  --text: #fff7e8;
  --muted: #d9c3e0;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans Bengali", "Hind Siliguri", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 4%, rgba(255, 141, 40, 0.24), transparent 28rem),
    radial-gradient(circle at 18% 18%, rgba(221, 76, 255, 0.22), transparent 24rem),
    linear-gradient(160deg, #100319 0%, #21082f 45%, #12041b 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 195, 90, 0.2);
  background: rgba(18, 5, 27, 0.86);
  backdrop-filter: blur(16px);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 195, 90, 0.45);
  border-radius: 12px;
  color: var(--gold);
  background: linear-gradient(145deg, #4b1765, #200729);
  box-shadow: 0 0 28px rgba(255, 141, 40, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 195, 90, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover,
.nav a.active {
  color: #2a1000;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 195, 90, 0.22);
  border-radius: 999px;
  color: #fff7e8;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
}

.button.primary {
  color: #2b1200;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 34px rgba(255, 141, 40, 0.32);
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 26px auto 0;
  border: 1px solid rgba(255, 195, 90, 0.22);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(14, 4, 22, 0.94) 0%, rgba(18, 5, 27, 0.76) 38%, rgba(18, 5, 27, 0.08) 72%);
  pointer-events: none;
}

.hero img {
  width: 100%;
  height: min(620px, 72vh);
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  width: min(620px, 100%);
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 6vw, 72px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 195, 90, 0.28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 195, 90, 0.08);
  font-weight: 800;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
}

.hero-copy p,
.lead {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat,
.card,
.article-card,
.inner-card {
  border: 1px solid rgba(255, 195, 90, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.stat {
  padding: 16px;
  border-radius: 18px;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 22px;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 74px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 48px);
}

.section-head p,
.card p,
.article-card p,
.inner-card p,
.footer p,
.list li {
  color: var(--muted);
  line-height: 1.75;
}

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

.card {
  min-height: 230px;
  padding: 24px;
  border-radius: 24px;
}

.icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 16px;
  color: #301400;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 25px;
}

.card h3,
.article-card h3,
.inner-card h3 {
  font-size: 22px;
}

.feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.feature img {
  border-radius: 24px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38);
}

.pill-list,
.article-grid,
.inner-grid {
  display: grid;
  gap: 16px;
}

.pill-list {
  grid-template-columns: repeat(3, 1fr);
}

.pill {
  padding: 18px;
  border: 1px solid rgba(255, 195, 90, 0.2);
  border-radius: 18px;
  background: rgba(255, 195, 90, 0.07);
  color: #ffe6b3;
  font-weight: 800;
}

.article-grid {
  grid-template-columns: repeat(3, 1fr);
}

.article-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 22px;
}

.article-card a {
  color: var(--gold);
  font-weight: 900;
}

.page-hero {
  padding: 76px 0 34px;
}

.page-hero .inner-card {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 195, 90, 0.12), rgba(221, 76, 255, 0.1)),
    rgba(255, 255, 255, 0.04);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
}

.inner-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.inner-card {
  padding: 26px;
  border-radius: 22px;
}

.list {
  margin: 0;
  padding-left: 24px;
}

.list li {
  margin: 10px 0;
}

.footer {
  margin-top: 80px;
  border-top: 1px solid rgba(255, 195, 90, 0.16);
  background: rgba(10, 3, 16, 0.58);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .grid,
  .article-grid,
  .pill-list,
  .stats,
  .feature,
  .inner-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero img {
    height: 720px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(14, 4, 22, 0.94) 0%, rgba(18, 5, 27, 0.76) 54%, rgba(18, 5, 27, 0.22) 100%);
  }
}

@media (max-width: 620px) {
  .header-actions {
    width: 100%;
  }

  .header-actions .button {
    flex: 1;
  }

  .hero {
    border-radius: 20px;
  }

  .hero-copy {
    padding: 26px;
    justify-content: flex-start;
  }

  h1 {
    font-size: 42px;
  }

  .section {
    padding-top: 54px;
  }

  .section-head {
    display: block;
  }
}
