:root {
  --navy: #16356b;
  --blue: #39a9e1;
  --pink: #ee4766;
  --soft-bg: #f3f3f3;
  --card-bg: #ffffff;
  --text: #202020;
  --muted: #676767;
  --radius-xl: 28px;
  --radius-lg: 24px;
  --shadow-soft: 0 8px 28px rgba(15, 34, 63, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--soft-bg);
  color: var(--text);
}

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

.skip-link {
  z-index: 1050;
}

.site-navbar {
  padding: 18px 0;
  background: transparent;
}

.site-navbar .container {
  background: #ffffff;
  border-radius: 22px;
  padding: 12px 18px;
  box-shadow: 0 8px 28px rgba(15, 34, 63, 0.06);
}

.site-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-nav {
  gap: 24px;
}

.navbar-brand .brand-text {
  position: relative;
  display: inline-block;
}

.navbar-brand .brand-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  /* spacing from text */
  width: 100%;
  height: 3px;
  /* thickness */
  background: var(--pink);
  /* your design color */
  border-radius: 2px;
}

.navbar-brand {
  text-decoration: none;
  /* prevents full link underline */
}

.navbar-nav .dropdown {
  position: static;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-toggle::after {
  content: '›';
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
}

.navbar .dropdown-menu {
  border: 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 18px 36px rgba(15, 34, 63, 0.12);
  padding: 22px 22px 18px;
  min-width: 320px;
  margin-top: 0;
  top: calc(100% + 12px);
  background: #f8f8f8;
  list-style: none;
}

.navbar .dropdown-menu.narrow {
  min-width: 270px;
}

.navbar .dropdown-menu.wide {
  min-width: 430px;
}

.navbar .dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 8px;
}

.dropdown-item {
  padding: 6px 0;
  font-size: 13px;
  line-height: 1.45;
  color: #16356b;
  white-space: normal;
  background: transparent;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: transparent;
  color: var(--pink);
}

@media (min-width: 992px) {

  .navbar .dropdown:hover .dropdown-menu,
  .navbar .dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .navbar .dropdown-toggle-area {
    position: relative;
  }

  .navbar .dropdown-toggle-area::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
  }
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  color: #4b4b4b;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0 !important;
}

.nav-link.active {
  color: var(--pink) !important;
}

.hero {
  text-align: center;
  padding: 26px 0 34px;
}

.hero h1 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.hero p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: #2f2f2f;
  text-align: justify;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pill-btn {
  min-width: 170px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  color: #fff;
  border: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}

.pill-btn.blue {
  background: var(--blue);
}

.pill-btn.pink {
  background: var(--pink);
}

.pill-btn.navy {
  background: var(--navy);
}

.beta-btn {
  min-width: auto;
  padding-inline: 22px;
}

.section-subtitle {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 18px;
  color: #111;
}

.content-section {
  padding: 22px 0;
}

.soft-card {
  background: var(--card-bg);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  height: 100%;
}

.card-body-padded {
  padding: 28px;
}

.feature-logo {
  height: 180px;
  border-radius: 22px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 82px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
  overflow: hidden;
}

.mock-logo-accent {
  color: #d8c29d;
  font-size: 44px;
  margin: 0 6px;
  position: relative;
  top: -14px;
}

/* .eyebrow-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 18px;
    }

    .eyebrow-tags a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 2px 7px;
      border-radius: 999px;
      background: #f3f0f5;
      color: #b06a87;
      font-size: 8px;
      line-height: 1;
      font-weight: 500;
      letter-spacing: 0;
      border: 1px solid #ece6eb;
      text-decoration: none;
      transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    }

    .eyebrow-tags a:hover,
    .eyebrow-tags a:focus {
      color: var(--pink);
      background: #f8f3f6;
      border-color: #e8d8e0;
    } */

.eyebrow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
}

/* Neutral (Startup) */
.tag-neutral {
  color: #7c8698;
  background: #f1f3f6;

}

/* Blue */
.tag-blue {
  color: #57b7df;
  background: #eef8fc;
}

/* Pink / Red */
.tag-pink {
  color: #e58a98;
  background: #fdf0f3;
}

/* Purple */
.tag-purple {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
}

/* subtle hover (keep it minimal like design) */
.tag:hover {
  opacity: 0.85;
}

.soft-card .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  min-height: 0;
  border-radius: 999px;
  background: #f3f3f3;
  color: var(--navy);
  border: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  box-shadow: none;
}

.soft-card .cta-link::after {
  content: "›";
  font-size: 15px;
  line-height: 1;
}

.soft-card .cta-link:hover,
.soft-card .cta-link:focus {
  background: #ececec;
  color: var(--navy);
}

.article-image,
.chart-box {
  background: linear-gradient(135deg, #dcdcdc, #f4f4f4);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.article-image {
  height: 192px;
  background: linear-gradient(135deg, #e7e7e7 0%, #fafafa 40%, #d9d9d9 100%);
}

/* .article-image::after {
      content: '';
      position: absolute;
      left: 12%;
      right: 12%;
      bottom: 14px;
      height: 72px;
      border-radius: 18px;
      background: linear-gradient(90deg, #b6b6b6, #dfdfdf, #bdbdbd);
      filter: blur(0.2px);
    } */

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f5f5f5;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.cta-link::after {
  content: '›';
  font-size: 18px;
  line-height: 1;
}

.promo-card {
  border-radius: 34px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.promo-layout {
  min-height: 560px;
}

.promo-right {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
}

.promo-right>article,
.promo-right>section {
  flex: 1;
}

.promo-card h2,
.promo-card h3 {
  margin: 0;
  font-size: 54px;
  line-height: 0.98;
  font-weight: 800;
}

.promo-card .small-intro {
  font-size: 23px;
  line-height: 1.15;
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
}

.promo-card.compact {
  min-height: 220px;
}

.promo-card.compact h2,
.promo-card.compact h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
}

.promo-card.light {
  background: #f8f8f8;
  color: var(--blue);
}

.promo-card.pink {
  background: var(--pink);
}

.promo-card.blue {
  background: var(--blue);
}

.promo-card.navy {
  background: var(--navy);
}

.promo-card.white {
  background: #fbfbfb;
  color: var(--pink);
}

.promo-card .cta-link {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
  padding: 8px 16px;
}

.promo-card.light .cta-link,
.promo-card.white .cta-link {
  background: #f4f4f4;
  color: inherit;
  border: 0;
}

.sdm-section {
  padding: 8px 0 42px;
}

.sdm-home {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.sdm-home__media {
  background: #ffffff;
  border: 1px solid rgba(18, 28, 45, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  display: block;
  overflow: hidden;
  width: 100%;
}

.sdm-home__media img {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.sdm-home__button {
  max-width: 100%;
  white-space: normal;
}

.news-section-desktop {
  display: block;
}

.news-section-mobile {
  display: none;
}

.news-grid-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-grid-card .feature-logo {
  flex: 0 0 auto;
  margin-bottom: 0 !important;
  border-radius: 0;
}

.news-grid-card .news-media {
  height: 160px;
  background: linear-gradient(135deg, #ececec 0%, #fafafa 45%, #d8d8d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.news-grid-card .news-media.logo {
  background: #fff;
  font-size: 72px;
  font-weight: 800;
  color: #6d3df2;
  letter-spacing: -0.04em;
}

.news-grid-card .news-media.logo.imt {
  font-size: 64px;
  color: #7c5ce4;
  flex-direction: column;
  line-height: 0.9;
}

.news-grid-card .news-media.logo.impulse {
  font-size: 34px;
  color: #222;
  letter-spacing: -0.02em;
}

.news-grid-card .news-media.people::before,
.news-grid-card .news-media.people::after {
  content: '';
  position: absolute;
  bottom: 0;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(#2a2a2a, #585858);
}

.news-grid-card .news-media.people::before {
  left: 28%;
  width: 56px;
  height: 98px;
}

.news-grid-card .news-media.people::after {
  left: 48%;
  width: 56px;
  height: 92px;
}

.news-grid-card .news-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  flex: 1;
}

.news-grid-card h3 {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.news-grid-card p {
  line-height: 1.65;
  color: #444;
  margin-bottom: 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-grid-card .cta-link {
  background: #f5f5f5;
  color: var(--navy);
  border: 0;
}

.all-news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.all-news-link::after {
  content: '›';
  font-size: 18px;
  line-height: 1;
}

.chart-card {
  background: #fff;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.chart-box {
  height: 330px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #efefef;
  padding: 22px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 18px;
  flex-wrap: wrap;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.metrics dt,
.metrics dd {
  margin: 0;
}

.metric strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
  color: #222;
}

.metric span {
  font-size: 12px;
  color: #666;
  display: block;
  margin-bottom: 4px;
}

.metric small {
  font-size: 11px;
  color: #27a745;
  font-weight: 700;
}

.bar-chart {
  height: 210px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
}

.bar-group {
  flex: 1 1 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}

.bar {
  width: 12px;
  border-radius: 4px 4px 0 0;
  background: #8ec7f3;
}

.bar.dark {
  background: #4ea4ea;
}

.chart-labels {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  font-size: 10px;
  color: #707070;
  margin-top: 10px;
  text-align: center;
}

.seo-cta {
  text-align: center;
  padding: 26px 0 10px;
}

.seo-cta h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 14px;
}

.footer {
  background: var(--navy);
  color: #fff;
  margin-top: 36px;
  padding: 56px 0 40px;
}

.footer-brand {
  text-align: center;
  margin-bottom: 34px;
}

.footer-brand .brand-mark {
  margin: 0 auto 10px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin: 0;
}

.footer h2,
.footer h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 6px;
}

.social-row {
  text-align: center;
  margin-top: 26px;
}

.social-icons {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icons a {
  background: #fff;
  color: var(--navy);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
}

.search-icon {
  width: 16px;
  height: 16px;
  border: 2px solid #3f3f3f;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.search-icon::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 2px;
  background: #3f3f3f;
  right: -5px;
  bottom: -2px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.navbar-toggler {
  border: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(15, 34, 63, 0.08);
  padding: 8px 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(57, 169, 225, 0.2);
}

.navbar-toggler-icon {
  background-image: none;
  width: 18px;
  height: 2px;
  background: #717171;
  position: relative;
  display: inline-block;
  border-radius: 2px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #717171;
  border-radius: 2px;
}

.navbar-toggler-icon::before {
  top: -6px;
}

.navbar-toggler-icon::after {
  top: 6px;
}

@media (max-width: 991.98px) {
  .site-navbar {
    padding: 16px 0 8px;
  }

  .site-navbar .navbar-collapse {
    margin-top: 14px;
    background: #fff;
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: var(--shadow-soft);
  }

  .navbar .dropdown-menu,
  .navbar .dropdown-menu.narrow,
  .navbar .dropdown-menu.wide {
    min-width: 100%;
    margin-top: 10px;
    border-radius: 18px;
    box-shadow: none;
    padding: 10px 0 0;
    background: transparent;
  }

  .nav-dropdown-toggle::after {
    transform: rotate(90deg);
  }

  .dropdown-item {
    padding: 7px 0;
  }

  .navbar-nav {
    gap: 10px;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 14px;
  }

  .hero h1 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .hero p {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.75;
    text-align: justify;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .pill-btn {
    min-width: 184px;
    font-size: 13px;
    padding: 12px 20px;
  }

  .content-section {
    padding: 12px 0;
  }

  .feature-logo {
    height: 140px;
    font-size: 64px;
  }

  .section-subtitle {
    font-size: 24px;
  }

  .promo-card {
    min-height: 180px;
    border-radius: 30px;
  }

  .promo-card h2,
  .promo-card h3 {
    font-size: 28px;
    line-height: 1.12;
  }

  .promo-card .small-intro {
    font-size: 20px;
  }

  .chart-card,
  .soft-card {
    border-radius: 28px;
  }

  .chart-box {
    height: auto;
    padding: 14px;
    border-radius: 20px;
  }

  .metrics {
    grid-template-columns: repeat(5, minmax(60px, 1fr));
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .metric strong {
    font-size: 18px;
  }

  .bar-chart {
    height: 120px;
    gap: 6px;
  }

  .bar {
    width: 7px;
  }

  .chart-labels {
    font-size: 8px;
    gap: 6px;
  }

  .seo-cta h2 {
    font-size: 15px;
  }

  .footer {
    padding: 42px 0 30px;
  }

  .footer .row>* {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .content-section+.content-section {
    margin-top: 32px;
  }

  .featured-startup-col {
    padding-bottom: 28px;
  }

  .blog-feature-col {
    padding-top: 10px;
    margin-top: 0 !important;
  }

  .blog-feature-col .section-subtitle {
    display: block;
    margin-top: 12px;
    margin-bottom: 24px;
  }

  .content-section .row>.col-lg-6+.col-lg-6 {
    margin-top: 16px;
  }

  .hero+.content-section {
    margin-top: 18px;
  }

  .hero+.content-section .section-subtitle {
    margin-bottom: 14px;
  }

  .container {
    max-width: 92%;
  }

  .site-navbar .navbar-brand {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    max-width: 300px;
    font-size: 13px;
  }

  .card-body-padded {
    padding: 22px;
  }

  .article-image {
    height: 150px;
  }

  .promo-card.large-mobile {
    min-height: 360px;
  }

  .news-section-desktop {
    display: none;
  }

  .news-section-mobile {
    display: block;
  }

  .footer-brand p {
    max-width: 280px;
    margin: 0 auto;
  }

  .desktop-only {
    display: none !important;
  }
}
