/* ===== Hiive Replica - Master Stylesheet ===== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --navy: #19434f;
  --salmon: #ef5d60;
  --salmon-hover: #cc5153;
  --off-white: #f8f8f4;
  --grey-900: #1a1a1a;
  --grey-800: #333;
  --grey-700: #555;
  --grey-600: #777;
  --grey-500: #999;
  --grey-100: #e2e8f0;
  --white: #fff;
  --chart-green: #22c55e;
  --chart-red: #ef4444;
  --nav-height: 72px;
  --max-width: 1440px;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: "Inter", Arial, sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--grey-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

/* ===== Utility ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 64px;
  }
}
@media (min-width: 1280px) {
  .container {
    padding: 0 96px;
  }
}
@media (min-width: 1600px) {
  .container {
    padding: 0 120px;
  }
}

.section-pad {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .section-pad {
    padding: 80px 0;
  }
}
@media (max-width: 479px) {
  .section-pad {
    padding: 48px 0;
  }
}

.section-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
}
@media (max-width: 479px) {
  .section-title {
    font-size: 32px;
  }
}

.section-sub {
  font-size: 18px;
  color: var(--grey-700);
  line-height: 1.6;
  max-width: 650px;
}
@media (max-width: 479px) {
  .section-sub {
    font-size: 16px;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    opacity 0.2s;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--salmon);
  color: var(--white);
  padding: 12px 24px;
  min-width: 144px;
  min-height: 48px;
  font-size: 16px;
}
.btn-primary:hover {
  background: var(--salmon-hover);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  min-width: 144px;
  min-height: 48px;
  font-size: 16px;
}
.btn-navy:hover {
  background: #1a5566;
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 12px 24px;
  min-width: 144px;
  font-size: 16px;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  min-height: 60px;
  min-width: 200px;
  font-size: 18px;
}
@media (max-width: 479px) {
  .btn-lg {
    min-height: 48px;
    min-width: 100%;
    font-size: 16px;
  }
}

.btn-block {
  width: 100%;
}

/* ===== Announcement Bar ===== */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: height 0.3s;
}
.announcement-bar.open {
  height: 40px;
}
.announcement-bar a {
  text-decoration: underline;
}
.announcement-bar .close-btn {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 479px) {
  .announcement-bar {
    font-size: 11px;
  }
}

/* ===== Navigation ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
nav .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
@media (min-width: 1024px) {
  nav .nav-inner {
    padding: 0 64px;
  }
}
@media (min-width: 1280px) {
  nav .nav-inner {
    padding: 0 96px;
  }
}
@media (min-width: 1600px) {
  nav .nav-inner {
    padding: 0 120px;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a,
.nav-links button {
  font-size: 14px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 0;
  transition: color 0.3s;
  font-family: var(--font-sans);
}
@media (min-width: 1280px) {
  .nav-links a,
  .nav-links button {
    font-size: 16px;
  }
}
nav.scrolled .nav-links a,
nav.scrolled .nav-links button {
  color: var(--grey-900);
}
.nav-links a:hover,
.nav-links button:hover {
  color: var(--salmon);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .nav-actions {
    display: flex;
  }
}

.nav-actions .sign-in {
  font-size: 14px;
  color: var(--white);
  transition: color 0.3s;
}
@media (min-width: 1280px) {
  .nav-actions .sign-in {
    font-size: 16px;
  }
}
nav.scrolled .nav-actions .sign-in {
  color: var(--grey-900);
}
.nav-actions .sign-in:hover {
  color: var(--salmon);
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--nav-height);
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 51;
  background: transparent;
  transition: background 0.3s;
}
@media (min-width: 1024px) {
  .mobile-header {
    display: none;
  }
}
.mobile-header.scrolled {
  background: var(--white);
}
.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-header.scrolled .mobile-menu-btn {
  color: var(--grey-900);
}
.mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-actions a {
  font-size: 14px;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-header.scrolled .mobile-actions a {
  color: var(--grey-900);
}

/* Nav Search */
.search-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  transition: color 0.3s;
}
@media (min-width: 1280px) {
  .search-toggle {
    display: none;
  }
}
nav.scrolled .search-toggle {
  color: var(--grey-900);
}

.search-container {
  display: none;
  position: relative;
}
@media (min-width: 1280px) {
  .search-container {
    display: block;
  }
}
.search-container input {
  height: 40px;
  width: 256px;
  border-radius: 6px;
  border: 1px solid var(--grey-100);
  padding: 0 32px 0 36px;
  font-size: 14px;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s;
  font-family: var(--font-sans);
}
.search-container input:focus {
  border-color: var(--salmon);
}
.search-container .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-500);
  pointer-events: none;
}

/* ===== Dropdown ===== */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  padding-top: 8px;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}
.dropdown-menu-inner {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dropdown-menu-inner a {
  color: var(--grey-900) !important;
  padding: 0 !important;
  font-size: 14px !important;
}
.dropdown-menu-inner a:hover {
  color: var(--salmon) !important;
}
.dropdown-arrow {
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--grey-100);
  border-top: 1px solid var(--grey-100);
  transform: rotate(45deg);
  position: absolute;
  top: 5px;
  left: 20px;
}

/* ===== Mobile Drawer ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 60;
}
.mobile-overlay.open {
  display: block;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 70;
  transition: left 0.3s;
  overflow-y: auto;
  padding: 24px;
}
.mobile-drawer.open {
  left: 0;
}
.mobile-drawer .close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  float: right;
  color: var(--grey-900);
}
.mobile-drawer a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: var(--grey-900);
  border-bottom: 1px solid var(--grey-100);
}
.mobile-drawer .drawer-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-500);
  text-transform: uppercase;
  margin-top: 16px;
  padding: 12px 0 4px;
  letter-spacing: 0.5px;
}

.nav-inner {
  background: var(--navy);
}

/* ===== Hero ===== */
.hero {
  background: var(--navy);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 64px;
}
@media (max-width: 991px) {
  .hero {
    padding: 0 70px;
  }
}
@media (max-width: 479px) {
  .hero {
    padding: 0 24px;
  }
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 140px 0 100px;
  text-align: center;
}
@media (max-width: 479px) {
  .hero-inner {
    padding: 120px 0 48px;
  }
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 90px;
  font-weight: 500;
  line-height: 80px;
  color: var(--white);
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .hero h1 {
    font-size: 48px;
    line-height: 55px;
  }
}
@media (max-width: 479px) {
  .hero h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
.hero h1 .light {
  font-weight: 400;
}
.hero h1 .small {
  font-size: 45px;
}
@media (max-width: 479px) {
  .hero h1 .small {
    font-size: 23px;
    line-height: 40px;
  }
}
.hero .subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: var(--white);
  max-width: 674px;
  margin: 20px auto 0;
}
@media (max-width: 991px) {
  .hero .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .hero .subtitle {
    font-size: 18px;
    line-height: 23px;
  }
}
.hero .btn-primary {
  margin-top: 40px;
}

/* ===== Inner Page Hero ===== */
.hero-inner-page {
  background: var(--navy);
  padding: 140px 0 100px;
  text-align: center;
}
@media (max-width: 479px) {
  .hero-inner-page {
    padding: 120px 0 60px;
  }
}
.hero-inner-page h1 {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 24px;
}
@media (max-width: 991px) {
  .hero-inner-page h1 {
    font-size: 48px;
  }
}
@media (max-width: 479px) {
  .hero-inner-page h1 {
    font-size: 36px;
  }
}
.hero-inner-page p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 479px) {
  .hero-inner-page p {
    font-size: 16px;
  }
}
.hero-inner-page .btn-primary,
.hero-inner-page .btn-outline-light {
  margin-top: 32px;
}
.hero-inner-page .btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===== Hiive50 Section (Home) ===== */
.hiive50-section {
  display: flex;
  width: 100%;
}
.hiive50-content {
  background: var(--off-white);
  padding: 80px 60px 80px 96px;
  width: 73%;
}
@media (max-width: 991px) {
  .hiive50-section {
    flex-direction: column;
  }
  .hiive50-content {
    width: 100%;
    padding: 40px 32px;
  }
}
@media (max-width: 479px) {
  .hiive50-content {
    padding: 24px;
  }
}

.hiive50-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hiive50-title span {
  font-size: 48px;
  line-height: 40px;
}
@media (max-width: 479px) {
  .hiive50-title span {
    font-size: 30px;
    line-height: 40px;
  }
}
.hiive50-title .hiive {
  color: var(--navy);
  font-weight: 500;
}
.hiive50-title .num {
  color: var(--salmon);
  font-weight: 600;
  padding-right: 14px;
}
.hiive50-title .idx {
  color: #666;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--salmon);
  position: relative;
  flex-shrink: 0;
}
.live-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--salmon);
  animation: live-pulse 2s infinite;
}
@keyframes live-pulse {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }
}
.live-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--salmon);
}
@media (min-width: 768px) {
  .live-label {
    font-size: 16px;
  }
}

.index-value {
  margin-top: 30px;
}
.index-value .current {
  font-size: 28px;
  font-weight: 500;
  color: var(--grey-800);
}
.index-value .change {
  font-size: 16px;
  font-weight: 500;
  color: var(--chart-green);
  margin-left: 8px;
}
.index-value .label {
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-800);
  margin-left: 4px;
}

.chart-placeholder {
  height: 320px;
  margin: 24px 0;
  background: var(--white);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.chart-placeholder svg {
  width: 100%;
  height: 100%;
}

.chart-tabs {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
.chart-tabs button {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--grey-100);
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-sans);
}
.chart-tabs button:first-child {
  border-radius: 4px 0 0 4px;
}
.chart-tabs button:last-child {
  border-radius: 0 4px 4px 0;
}
.chart-tabs button.active {
  background: var(--grey-800);
  color: var(--white);
  border-color: var(--grey-800);
}
.chart-tabs button:not(.active):hover {
  background: var(--grey-100);
}

.hiive50-sidebar {
  padding: 180px 44px 0;
  width: 27%;
}
@media (max-width: 991px) {
  .hiive50-sidebar {
    width: 100%;
    padding: 40px 32px;
  }
}
@media (max-width: 479px) {
  .hiive50-sidebar {
    padding: 24px;
  }
}
.hiive50-sidebar .accent-line {
  width: 120px;
  height: 4px;
  background: var(--navy);
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .hiive50-sidebar .accent-line {
    display: none;
  }
}
.hiive50-sidebar p {
  font-size: 20px;
  line-height: 36px;
  color: #666;
  max-width: 340px;
  padding-top: 28px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .hiive50-sidebar p {
    max-width: 100%;
    padding-bottom: 28px;
  }
}
@media (max-width: 479px) {
  .hiive50-sidebar p {
    font-size: 14px;
    line-height: 26px;
  }
}

/* ===== Securities Ticker ===== */
.securities-ticker {
  background: var(--white);
  padding: 24px 96px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .securities-ticker {
    padding: 24px 32px;
  }
}
@media (max-width: 479px) {
  .securities-ticker {
    padding: 16px 24px;
  }
}
.ticker-label {
  font-size: 12px;
  color: var(--grey-500);
  margin-bottom: 12px;
}
.ticker-inner {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.ticker-inner::-webkit-scrollbar {
  display: none;
}
.ticker-card {
  flex-shrink: 0;
  width: 280px;
  padding: 16px;
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.ticker-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.ticker-card .company {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-900);
}
.ticker-card .price {
  font-size: 24px;
  font-weight: 600;
  color: var(--grey-900);
  margin-top: 8px;
}
.ticker-card .change {
  font-size: 14px;
  font-weight: 500;
  color: var(--chart-green);
}
.ticker-card .change.negative {
  color: var(--chart-red);
}
.ticker-disclaimer {
  font-size: 12px;
  color: var(--grey-500);
  margin-top: 16px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.ticker-disclaimer a {
  text-decoration: underline;
}

/* ===== Stats Section ===== */
.stats-section {
  background: var(--off-white);
  text-align: center;
}
.stats-section h2 {
  max-width: 700px;
  margin: 0 auto 64px;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 54px;
  color: var(--navy);
}
@media (max-width: 479px) {
  .stats-section h2 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 40px;
  }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 500;
  color: var(--salmon);
  line-height: 1.1;
}
@media (max-width: 479px) {
  .stat-value {
    font-size: 36px;
  }
}
.stat-label {
  font-size: 14px;
  color: var(--grey-600);
  margin-top: 8px;
  line-height: 1.5;
}
.stats-footnote {
  font-size: 12px;
  color: var(--grey-500);
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.stats-footnote a {
  text-decoration: underline;
  color: var(--grey-600);
}

/* ===== Explore Section ===== */
.explore-section {
  background: var(--navy);
  text-align: center;
  color: var(--white);
}
.explore-section h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}
@media (max-width: 479px) {
  .explore-section h2 {
    font-size: 32px;
  }
}
.explore-section p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
@media (max-width: 479px) {
  .explore-section p {
    font-size: 16px;
  }
}
.explore-search {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.explore-search input {
  width: 100%;
  height: 56px;
  border-radius: 9999px;
  border: none;
  padding: 0 24px 0 48px;
  font-size: 16px;
  outline: none;
  font-family: var(--font-sans);
}
.explore-search .icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-500);
}

/* ===== Features ===== */
.features-section {
  background: var(--off-white);
}
.features-header {
  text-align: center;
  margin-bottom: 64px;
}
.features-header h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
@media (max-width: 479px) {
  .features-header h2 {
    font-size: 32px;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 60px;
}
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
@media (max-width: 479px) {
  .feature-card h3 {
    font-size: 24px;
  }
}
.feature-card p {
  font-size: 16px;
  line-height: 28px;
  color: var(--grey-700);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.feature-icon.salmon {
  background: var(--salmon);
}
.feature-icon.navy {
  background: var(--navy);
}

/* ===== Personas ===== */
.personas-header {
  text-align: center;
  margin-bottom: 64px;
}
.personas-header h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
}
@media (max-width: 479px) {
  .personas-header h2 {
    font-size: 32px;
  }
}
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .personas-grid {
    grid-template-columns: 1fr;
  }
}
.persona-card {
  border: 1px solid var(--grey-100);
  border-radius: 12px;
  padding: 40px;
  transition: box-shadow 0.2s;
}
.persona-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.persona-card .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--salmon);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.persona-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin: 12px 0 16px;
  line-height: 1.3;
}
.persona-card p {
  font-size: 15px;
  line-height: 26px;
  color: var(--grey-700);
  margin-bottom: 24px;
}
.persona-card ul {
  margin-bottom: 32px;
}
.persona-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.5;
}
.persona-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--salmon);
  font-weight: 700;
}

/* ===== Insights ===== */
.insights-section {
  background: var(--off-white);
}
.insights-header {
  text-align: center;
  margin-bottom: 64px;
}
.insights-header h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
@media (max-width: 479px) {
  .insights-header h2 {
    font-size: 32px;
  }
}
.insights-header p {
  font-size: 18px;
  color: var(--grey-700);
  max-width: 600px;
  margin: 0 auto;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 991px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}
.insight-col h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.insight-col h4 a {
  font-size: 14px;
  font-weight: 500;
  color: var(--salmon);
}
.insight-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.insight-item {
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.insight-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.insight-item .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-800);
  line-height: 1.4;
  margin-bottom: 8px;
}
.insight-item .arrow {
  color: var(--salmon);
  font-weight: 600;
  display: inline-block;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--navy);
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media (max-width: 479px) {
  .cta-banner h2 {
    font-size: 32px;
  }
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
footer {
  background: var(--navy);
  padding: 64px 96px 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
@media (max-width: 991px) {
  footer {
    padding: 48px 32px 24px;
  }
}
@media (max-width: 479px) {
  footer {
    padding: 32px 24px 16px;
  }
}
.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 479px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
footer h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
footer a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--white);
}
.footer-brand .tagline {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 600;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  margin-bottom: 0;
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 24px auto 0;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a {
  display: inline;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 4px;
}
.footer-bottom a:hover {
  color: var(--white);
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 12px;
}
.copyright {
  margin-top: 16px;
}

/* ===== Page-Specific: Issuer ===== */
.issuer-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .issuer-services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .issuer-services {
    grid-template-columns: 1fr;
  }
}
.issuer-service-card {
  padding: 32px;
  border: 1px solid var(--grey-100);
  border-radius: 12px;
  transition: box-shadow 0.2s;
}
.issuer-service-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.issuer-service-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--salmon);
  margin-bottom: 20px;
}
.issuer-service-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
.issuer-service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey-700);
}

/* ===== Testimonials ===== */
.testimonials-section {
  background: var(--off-white);
  text-align: center;
}
.testimonials-section h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 48px;
  line-height: 1.2;
}
@media (max-width: 479px) {
  .testimonials-section h2 {
    font-size: 28px;
  }
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  text-align: left;
  border: 1px solid var(--grey-100);
}
.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-800);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card .author {
  font-weight: 600;
  color: var(--grey-900);
  font-size: 14px;
}
.testimonial-card .role {
  font-size: 13px;
  color: var(--grey-600);
  margin-top: 4px;
}
.testimonial-disclaimer {
  font-size: 12px;
  color: var(--grey-500);
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ===== Page-Specific: Seller ===== */
.seller-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 991px) {
  .seller-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.seller-showcase h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 479px) {
  .seller-showcase h3 {
    font-size: 28px;
  }
}
.seller-showcase p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-700);
  margin-bottom: 24px;
}
.seller-showcase ul {
  margin-bottom: 32px;
}
.seller-showcase li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 15px;
  color: var(--grey-700);
}
.seller-showcase li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--salmon);
  font-weight: 700;
}
.seller-showcase .image-area {
  background: var(--off-white);
  border-radius: 12px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey-500);
  overflow: hidden;
}
.seller-showcase .image-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Company logos grid */
.company-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.company-logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  border: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: box-shadow 0.2s;
  cursor: pointer;
}
.company-logo:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Page-Specific: Investors ===== */
.investor-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 991px) {
  .investor-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.investor-showcase:nth-child(even) .image-area {
  order: -1;
}
@media (max-width: 991px) {
  .investor-showcase:nth-child(even) .image-area {
    order: 0;
  }
}
.investor-showcase h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.investor-showcase p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-700);
}
.investor-showcase .image-area {
  background: var(--off-white);
  border-radius: 12px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey-500);
  overflow: hidden;
}
.investor-showcase .image-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Page-Specific: Our Story ===== */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (max-width: 991px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }
}
.founder-card {
  text-align: center;
}
.founder-card .avatar {
  width: 250px;
  height: 200px;
  border-radius: 50%;
  background: var(--off-white);
  margin: 0 auto 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-card .name {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}
.founder-card .title {
  font-size: 14px;
  color: var(--grey-600);
  margin: 4px 0 12px;
}
.founder-card .social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.founder-card .social a {
  display: inline-flex;
}
.founder-card .bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-700);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== Page-Specific: Hiive50 Detail ===== */
.hiive50-detail-header {
  background: var(--navy);
  padding: 120px 0 60px;
  color: var(--white);
}
@media (max-width: 479px) {
  .hiive50-detail-header {
    padding: 100px 0 40px;
  }
}
.hiive50-detail-header h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
}
@media (max-width: 479px) {
  .hiive50-detail-header h1 {
    font-size: 36px;
  }
}
.hiive50-detail-header .sub {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 8px;
}
.hiive50-detail-header .big-number {
  font-size: 64px;
  font-weight: 500;
  margin-top: 24px;
}
@media (max-width: 479px) {
  .hiive50-detail-header .big-number {
    font-size: 40px;
  }
}

.hiive50-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--grey-100);
  margin-bottom: 32px;
}
.hiive50-tabs button {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey-600);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-family: var(--font-sans);
}
.hiive50-tabs button.active {
  color: var(--navy);
  border-bottom-color: var(--salmon);
}
.hiive50-tabs button:hover {
  color: var(--navy);
}

.hiive50-meta {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.hiive50-meta-item .label {
  font-size: 12px;
  color: var(--grey-500);
  text-transform: uppercase;
}
.hiive50-meta-item .value {
  font-size: 20px;
  font-weight: 600;
  color: var(--grey-800);
  margin-top: 4px;
}

.hiive50-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-700);
  max-width: 800px;
  margin-bottom: 40px;
}

/* Constituents Table */
.constituents-table {
  width: 100%;
  border-collapse: collapse;
}
.constituents-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--grey-500);
  border-bottom: 1px solid var(--grey-100);
  font-weight: 600;
}
.constituents-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--grey-100);
  color: var(--grey-800);
}
.constituents-table tr:hover td {
  background: var(--off-white);
}
.constituents-table .company-name {
  font-weight: 600;
}
.constituents-table .positive {
  color: var(--chart-green);
}
.constituents-table .negative {
  color: var(--chart-red);
}

.hiive50-newsletter {
  background: var(--off-white);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}
.hiive50-newsletter h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.hiive50-newsletter p {
  color: var(--grey-700);
  margin-bottom: 24px;
}
.hiive50-newsletter .newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 479px) {
  .hiive50-newsletter .newsletter-form {
    flex-direction: column;
  }
}
.hiive50-newsletter input {
  flex: 1;
  height: 48px;
  border-radius: 9999px;
  border: 1px solid var(--grey-100);
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  font-family: var(--font-sans);
}
.hiive50-newsletter input:focus {
  border-color: var(--salmon);
}

/* ===== Page-Specific: Securities (Browse) ===== */
.securities-header {
  background: var(--navy);
  padding: 120px 0 60px;
  color: var(--white);
  text-align: center;
}
@media (max-width: 479px) {
  .securities-header {
    padding: 100px 0 40px;
  }
}
.securities-header h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media (max-width: 479px) {
  .securities-header h1 {
    font-size: 36px;
  }
}
.securities-header p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.securities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .securities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .securities-grid {
    grid-template-columns: 1fr;
  }
}
.security-card {
  border: 1px solid var(--grey-100);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s;
  cursor: pointer;
}
.security-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.security-card .name {
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-900);
}
.security-card .desc {
  font-size: 13px;
  color: var(--grey-600);
  line-height: 1.5;
  margin: 8px 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.security-card .orders {
  font-size: 13px;
  color: var(--salmon);
  font-weight: 600;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  align-items: center;
}
.pagination a {
  padding: 8px 14px;
  border: 1px solid var(--grey-100);
  border-radius: 6px;
  font-size: 14px;
  color: var(--grey-700);
  transition: all 0.2s;
}
.pagination a:hover,
.pagination a.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.pagination .dots {
  color: var(--grey-500);
  padding: 8px 4px;
}

/* ===== Page-Specific: Contact ===== */
.contact-section {
  text-align: center;
  padding: 80px 0;
}
.contact-section h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
@media (max-width: 479px) {
  .contact-section h1 {
    font-size: 36px;
  }
}
.contact-section .sub {
  font-size: 18px;
  color: var(--grey-700);
  margin-bottom: 48px;
}
.contact-list {
  max-width: 500px;
  margin: 0 auto;
}
.contact-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-100);
}
.contact-item:last-child {
  border-bottom: none;
}
.contact-item .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-item .email {
  font-size: 16px;
  color: var(--salmon);
}

/* ===== Page-Specific: Hiive Funds ===== */
.funds-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}
@media (max-width: 479px) {
  .funds-hero {
    padding: 120px 0 60px;
  }
}
.funds-hero h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media (max-width: 479px) {
  .funds-hero h1 {
    font-size: 36px;
  }
}
.funds-hero p {
  font-size: 20px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 32px;
}

.funds-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 48px 0;
}
.funds-logos img {
  height: 48px;
  opacity: 0.9;
}

.funds-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .funds-features {
    grid-template-columns: 1fr;
  }
}
.funds-feature-card {
  text-align: center;
  padding: 32px;
}
.funds-feature-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}
.funds-feature-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.funds-feature-card p {
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.6;
}

.funds-diligence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .funds-diligence {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .funds-diligence {
    grid-template-columns: 1fr;
  }
}
.funds-diligence-card {
  text-align: center;
  padding: 24px;
  border: 1px solid var(--grey-100);
  border-radius: 12px;
}
.funds-diligence-card .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
}
.funds-diligence-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.funds-diligence-card p {
  font-size: 13px;
  color: var(--grey-600);
  line-height: 1.5;
}

.funds-completed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .funds-completed {
    grid-template-columns: 1fr;
  }
}
.fund-card {
  border: 1px solid var(--grey-100);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.fund-card .fund-logo {
  height: 40px;
  margin: 0 auto 16px;
}
.fund-card .fund-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.fund-card .fund-status {
  font-size: 13px;
  color: var(--grey-600);
  margin-top: 4px;
}

.funds-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .funds-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .funds-steps {
    grid-template-columns: 1fr;
  }
}
.funds-step {
  text-align: center;
}
.funds-step .num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--salmon);
}
.funds-step p {
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.5;
}

/* ===== Page-Specific: Careers ===== */
.careers-hero {
  background: var(--navy);
  padding: 140px 0 100px;
  text-align: center;
  color: var(--white);
}
@media (max-width: 479px) {
  .careers-hero {
    padding: 120px 0 60px;
  }
}
.careers-hero h1 {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .careers-hero h1 {
    font-size: 48px;
  }
}
@media (max-width: 479px) {
  .careers-hero h1 {
    font-size: 36px;
  }
}
.careers-hero p {
  font-size: 20px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 479px) {
  .careers-hero p {
    font-size: 16px;
  }
}
.careers-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .careers-values {
    grid-template-columns: 1fr;
  }
}
.careers-value-card {
  text-align: center;
  padding: 32px;
}
.careers-value-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--salmon);
  margin: 0 auto 16px;
}
.careers-value-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
.careers-value-card p {
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.6;
}

/* ===== Page-Specific: Market Insights ===== */
.insights-landing-header {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}
@media (max-width: 479px) {
  .insights-landing-header {
    padding: 120px 0 60px;
  }
}
.insights-landing-header h1 {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .insights-landing-header h1 {
    font-size: 48px;
  }
}
@media (max-width: 479px) {
  .insights-landing-header h1 {
    font-size: 36px;
  }
}
.insights-landing-header p {
  font-size: 20px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Responsive helpers ===== */
@media (max-width: 479px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (min-width: 480px) {
  .hide-desktop {
    display: none !important;
  }
}
