/* Audience hub + landing pages (investors, customers, academia) */

.m-hero--investors {
  background: linear-gradient(165deg, #451a03 0%, #92400e 45%, #b45309 100%);
}

.m-hero--customers {
  background: linear-gradient(165deg, #0f172a 0%, #1e4d63 55%, #2d6a7a 100%);
}

.m-hero--academia {
  background: linear-gradient(165deg, #312e81 0%, #4c1d95 50%, #6d28d9 100%);
}

.m-hero--hub {
  background: linear-gradient(165deg, #0f172a 0%, #334155 50%, #1e4d63 100%);
}

.m-audience-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.m-audience-badge--investors {
  background: rgba(254, 243, 199, 0.2);
  color: #fde68a;
}

.m-audience-badge--customers {
  background: rgba(224, 242, 247, 0.2);
  color: #a5f3fc;
}

.m-audience-badge--academia {
  background: rgba(237, 233, 254, 0.25);
  color: #ddd6fe;
}

.m-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.m-hub-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
  min-height: 220px;
}

.m-hub-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.m-hub-card__icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.m-hub-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.m-hub-card p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}

.m-hub-card__cta {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}

.m-hub-card--investors:hover .m-hub-card__cta {
  color: #b45309;
}

.m-hub-card--academia:hover .m-hub-card__cta {
  color: #6d28d9;
}

.m-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 24px 0 0;
}

.m-stat {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.m-stat strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.m-stat span {
  font-size: 0.78rem;
  opacity: 0.85;
}

.m-timeline {
  position: relative;
  margin: 32px 0 0;
  padding-left: 0;
  list-style: none;
}

.m-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, #cbd5e1 100%);
  border-radius: 2px;
}

.m-timeline-item {
  position: relative;
  padding: 0 0 28px 52px;
}

.m-timeline-item:last-child {
  padding-bottom: 0;
}

.m-timeline-dot {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.m-timeline-item--now .m-timeline-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 0 12px rgba(30, 77, 99, 0.4);
}

.m-timeline-item--investors .m-timeline-dot {
  border-color: #b45309;
  box-shadow: 0 0 0 4px #fef3c7;
}

.m-timeline-week {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 4px;
}

.m-timeline-item--investors .m-timeline-week {
  color: #b45309;
}

.m-timeline-item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.m-timeline-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.m-timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.m-timeline-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
}

.m-gantt {
  overflow-x: auto;
  margin-top: 24px;
  padding-bottom: 8px;
}

.m-gantt-track {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  min-width: 640px;
}

.m-gantt-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: right;
  padding-right: 4px;
}

.m-gantt-bar-wrap {
  position: relative;
  height: 28px;
  background: var(--bg);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.m-gantt-bar {
  position: absolute;
  top: 3px;
  bottom: 3px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 8px;
  white-space: nowrap;
  overflow: hidden;
}

.m-gantt-bar--w1 {
  background: #b45309;
  left: 0%;
  width: 12%;
}

.m-gantt-bar--w2 {
  background: #1e4d63;
  left: 14%;
  width: 14%;
}

.m-gantt-bar--w3 {
  background: #1e4d63;
  left: 30%;
  width: 12%;
}

.m-gantt-bar--w4 {
  background: #94a3b8;
  left: 44%;
  width: 10%;
}

.m-gantt-bar--w5 {
  background: #047857;
  left: 56%;
  width: 14%;
}

.m-gantt-bar--w6 {
  background: #047857;
  left: 72%;
  width: 12%;
}

.m-gantt-bar--w7 {
  background: #6d28d9;
  left: 86%;
  width: 10%;
}

.m-gantt-months {
  display: grid;
  grid-template-columns: 120px repeat(8, 1fr);
  gap: 4px;
  min-width: 640px;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding-left: 0;
}

.m-gantt-months span:first-child {
  grid-column: 1;
}

.m-legal-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  border-left: 3px solid var(--border);
  padding-left: 14px;
  margin: 24px 0 0;
}

.m-audience-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.m-audience-subnav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--surface);
}

.m-audience-subnav a:hover,
.m-audience-subnav a.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.m-schedule-banner {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.m-schedule-banner a {
  font-weight: 600;
}

.m-audience-portal-strip {
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}

.m-audience-portal-strip-inner {
  max-width: var(--max-width, 1100px);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.m-audience-portal-strip a {
  color: var(--muted);
  text-decoration: none;
}

.m-audience-portal-strip a:hover {
  color: var(--accent);
}
