/* ============================================================
   CONTENT PAGES — About, Contact, Blog, Press
   ============================================================ */

/* ---------- Hero ---------- */
.cnt-hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--asb-navy) 0%, #1A2240 100%);
  color: var(--paper);
}
.cnt-hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.cnt-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.7;
}

/* ---------- Stats strip ---------- */
.cnt-stats {
  background: var(--surface);
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.cnt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.cnt-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.cnt-stat:last-child { border-right: none; }
.cnt-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--asb-orange);
  letter-spacing: -0.02em;
  line-height: 1;
}
body.lang-bn .cnt-stat-num { font-family: var(--font-bn); }
.cnt-stat-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 600;
}

/* ---------- Sections ---------- */
.cnt-section { padding: 72px 0; background: var(--surface); }
.cnt-bg-paper { background: var(--paper); }
.cnt-narrow { max-width: 760px; margin: 0 auto; }
.cnt-section-head { text-align: center; margin-bottom: 40px; }
.cnt-section-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--gold-mist);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cnt-section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  text-wrap: balance;
}
body.lang-bn .cnt-section-title { font-family: var(--font-bn); font-size: 32px; }
.cnt-prose {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.8;
  margin: 0 0 18px;
}
.cnt-prose:last-child { margin-bottom: 0; }

/* ---------- Values grid ---------- */
.cnt-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.cnt-value-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.22s ease;
}
.cnt-value-card:hover {
  border-color: var(--asb-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42, 54, 86, 0.08);
}
.cnt-value-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.cnt-value-title {
  font-family: var(--font-bn), var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.cnt-value-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Timeline ---------- */
.cnt-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}
.cnt-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.cnt-tl-item {
  display: grid;
  grid-template-columns: 64px 32px 1fr;
  gap: 16px;
  padding-bottom: 36px;
  align-items: flex-start;
  position: relative;
}
.cnt-tl-item:last-child { padding-bottom: 0; }
.cnt-tl-year {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--asb-orange);
  text-align: right;
  padding-top: 4px;
}
.cnt-tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--asb-orange);
  border: 4px solid var(--surface);
  margin: 6px auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 1px var(--line);
}
.cnt-bg-paper .cnt-tl-dot { border-color: var(--paper); }
.cnt-tl-title {
  font-family: var(--font-bn), var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.cnt-tl-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Team grid ---------- */
.cnt-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.cnt-team-card {
  padding: 24px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  transition: all 0.22s ease;
}
.cnt-team-card:hover {
  border-color: var(--asb-orange);
  transform: translateY(-3px);
}
.cnt-team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: #fff;
}
.cnt-team-name {
  font-family: var(--font-bn), var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.cnt-team-role {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
}

/* ---------- Investors ---------- */
.cnt-inv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.cnt-inv-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 0.2s ease;
}
.cnt-inv-card:hover { border-color: var(--asb-orange); transform: translateY(-2px); }
.cnt-inv-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.cnt-inv-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* ---------- CTA ---------- */
.cnt-cta-section { padding: 64px 0 96px; background: var(--surface); }
.cnt-cta {
  background: linear-gradient(135deg, var(--asb-navy) 0%, #1A2240 100%);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cnt-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--asb-orange);
  opacity: 0.18;
  filter: blur(80px);
}
.cnt-cta-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  position: relative;
}
body.lang-bn .cnt-cta-title { font-family: var(--font-bn); font-size: 30px; }
.cnt-cta-sub {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  margin: 0 auto 28px;
  max-width: 560px;
  line-height: 1.6;
  position: relative;
}
.cnt-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cnt-cta-actions .btn-ink { background: var(--asb-orange); color: #fff; }
.cnt-cta-actions .btn-ink:hover { background: var(--gold-deep); }
.cnt-cta-actions .btn-ghost { color: var(--paper); border-color: rgba(255,255,255,0.3); }
.cnt-cta-actions .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ============================================================
   CONTACT-specific
   ============================================================ */
.cnt-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}
.cnt-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 6px 24px rgba(42, 54, 86, 0.05);
}
.cnt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cnt-field { margin-bottom: 16px; }
.cnt-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.cnt-field input,
.cnt-field textarea,
.cnt-field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-family: var(--font-bn), var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: all 0.18s ease;
  resize: vertical;
}
.cnt-field input:focus,
.cnt-field textarea:focus,
.cnt-field select:focus {
  border-color: var(--asb-orange);
  box-shadow: 0 0 0 4px var(--gold-mist);
}
.cnt-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  background: var(--asb-navy);
  color: var(--paper);
  font-family: var(--font-bn), var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
  margin-top: 6px;
}
.cnt-form-submit:hover {
  background: #1A2240;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(42, 54, 86, 0.18);
}
.cnt-form-submit svg { width: 18px; height: 18px; }
.cnt-aside { display: flex; flex-direction: column; gap: 16px; }
.cnt-aside-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.cnt-aside-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-mist);
  color: var(--asb-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.cnt-aside-icon svg { width: 22px; height: 22px; }
.cnt-aside-title {
  font-family: var(--font-bn), var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.cnt-aside-sub {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0 0 8px;
}
.cnt-aside-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--asb-orange);
  text-decoration: none;
}
.cnt-aside-val:hover { color: var(--gold-deep); }
.cnt-offices {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.cnt-office {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.cnt-office-city {
  font-family: var(--font-bn), var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.cnt-office-addr {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ============================================================
   BLOG / PRESS — listing
   ============================================================ */
.cnt-blog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.cnt-blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cnt-blog-cat {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-family: var(--font-bn), var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  cursor: pointer;
  transition: all 0.18s ease;
}
.cnt-blog-cat:hover { border-color: var(--asb-orange); color: var(--asb-orange); }
.cnt-blog-cat.is-on {
  background: var(--asb-navy);
  color: var(--paper);
  border-color: var(--asb-navy);
}

/* Featured (large) post */
.cnt-blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
  transition: all 0.2s ease;
}
.cnt-blog-featured:hover { border-color: var(--asb-orange); }
.cnt-blog-cover {
  background: linear-gradient(135deg, var(--gold-mist) 0%, var(--asb-orange) 100%);
  min-height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.cnt-blog-feat-body { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.cnt-blog-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--asb-orange);
  margin-bottom: 12px;
}
.cnt-blog-title-lg {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 12px;
}
body.lang-bn .cnt-blog-title-lg { font-family: var(--font-bn); font-size: 24px; }
.cnt-blog-excerpt {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0 0 16px;
}
.cnt-blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
}
.cnt-blog-meta-divider { color: var(--ink-soft); }

/* Posts grid */
.cnt-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.cnt-blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
}
.cnt-blog-card:hover {
  border-color: var(--asb-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42, 54, 86, 0.08);
}
.cnt-blog-card-cover {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.cnt-blog-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cnt-blog-card-title {
  font-family: var(--font-bn), var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0 0 8px;
}
.cnt-blog-card-excerpt {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}
.cnt-blog-card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
}

/* ============================================================
   PRESS — releases list
   ============================================================ */
.cnt-press-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cnt-press-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  align-items: center;
}
.cnt-press-item:hover {
  border-color: var(--asb-orange);
  transform: translateY(-2px);
}
.cnt-press-date {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--asb-orange);
  letter-spacing: 0.04em;
}
.cnt-press-body { min-width: 0; }
.cnt-press-title {
  font-family: var(--font-bn), var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.cnt-press-source {
  font-size: 12px;
  color: var(--ink-3);
}
.cnt-press-arrow {
  color: var(--ink-3);
  display: flex;
  align-items: center;
}
.cnt-press-arrow svg { width: 18px; height: 18px; }

/* ---------- Press kit cards ---------- */
.cnt-kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.cnt-kit-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cnt-kit-card:hover { border-color: var(--asb-orange); transform: translateY(-2px); }
.cnt-kit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-mist);
  color: var(--asb-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.cnt-kit-name {
  font-family: var(--font-bn), var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.cnt-kit-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .cnt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cnt-stat { border-bottom: 1px solid var(--line); }
  .cnt-stat:nth-last-child(-n+2) { border-bottom: none; }
  .cnt-stat:nth-child(2n) { border-right: none; }
  .cnt-section-title { font-size: 28px; }
  body.lang-bn .cnt-section-title { font-size: 24px; }
  .cnt-timeline::before { left: 60px; }
  .cnt-tl-item { grid-template-columns: 50px 24px 1fr; gap: 12px; }
  .cnt-blog-featured { grid-template-columns: 1fr; }
  .cnt-blog-cover { min-height: 180px; }
  .cnt-blog-feat-body { padding: 24px; }
  .cnt-contact-grid { grid-template-columns: 1fr; }
  .cnt-form { padding: 24px; }
  .cnt-form-row { grid-template-columns: 1fr; }
  .cnt-press-item { grid-template-columns: 1fr; gap: 6px; padding: 18px; }
  .cnt-press-arrow { display: none; }
  .cnt-cta { padding: 40px 24px; }
  .cnt-cta-title { font-size: 26px; }
  body.lang-bn .cnt-cta-title { font-size: 22px; }
}
