﻿/* announcement-bar DELETED */
.announcement-bar a {
  color: #fff;
  text-decoration: underline;
}
.announcement-bar .close-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  line-height: 1;
}

/* ---- Audio player HIDE ---- */
.audio-player,
.audio-visualizer,
.album-info-card {
  display: none !important;
}

/* ---- Hero visual override ---- */
.hero-visual .album-showcase {
  background: none;
  box-shadow: 0 8px 40px rgba(67, 56, 202, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.hero-visual .album-cover img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}
.hero-visual .album-reflection {
  display: none;
}

/* ---- Section label color ---- */
.section-label {
  color: #4338CA;
}

/* ---- Btn primary override ---- */
.btn-primary {
  background: #4338CA;
  border-color: #4338CA;
  color: #fff;
}
.btn-primary:hover {
  background: #3730A3;
  border-color: #3730A3;
  color: #fff;
}
.btn-secondary {
  border-color: #4338CA;
  color: #4338CA;
}
.btn-secondary:hover {
  background: #4338CA;
  color: #fff;
}

/* ---- Trust strip ---- */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem 2rem;
  background: #EEF2FF;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  flex-wrap: wrap;
}
.trust-stat {
  text-align: center;
}
.trust-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #4338CA;
  line-height: 1.1;
}
.trust-stat .stat-label {
  display: block;
  font-size: 0.875rem;
  color: #64748B;
  margin-top: 0.25rem;
}

/* ---- Hero tagline badge ---- */
.hero-tagline {
  display: inline-block;
  background: #EEF2FF;
  color: #4338CA;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ---- How it works number badge ---- */
.work-number {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  background: #EEF2FF;
  color: #4338CA;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

/* ---- CTA banner ---- */
.cta-banner {
  background: #4338CA;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}
.cta-banner h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-primary {
  background: #fff;
  color: #4338CA;
  border-color: #fff;
  margin-right: 1rem;
}
.cta-banner .btn-primary:hover {
  background: #EEF2FF;
  border-color: #EEF2FF;
}
.cta-banner .btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
}
.cta-banner .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 360px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cookie-banner.hidden {
  display: none;
}
.cookie-banner p {
  font-size: 0.875rem;
  color: #1E293B;
  margin: 0;
}
.cookie-banner a {
  color: #4338CA;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.btn-text {
  font-size: 0.875rem;
  color: #64748B;
  text-decoration: none;
}
.btn-text:hover {
  color: #4338CA;
}
.btn-sm {
  padding: 0.4rem 0.875rem;
  font-size: 0.875rem;
}

/* ---- Nav CTA button ---- */
.nav-cta {
  display: inline-block;
  background: #4338CA;
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: #3730A3;
  color: #fff;
}

/* ---- Footer extended ---- */
.footer-extended {
  background: #1E293B;
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.footer-extended .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand .footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-nav-group h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-nav-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-group li {
  margin-bottom: 0.4rem;
}
.footer-nav-group a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-nav-group a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: #4338CA;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fff;
}

/* ---- Page hero (half-height inner pages) ---- */
.page-hero {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  padding: 5rem 0 3rem;
  text-align: center;
}
.page-hero h1 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.page-hero .hero-description {
  max-width: 600px;
  margin: 0 auto;
  color: #64748B;
}

/* ---- Investor section ---- */
.investor-section {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}
.investor-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.5rem;
}
.investor-badge {
  display: inline-block;
  background: #EEF2FF;
  color: #4338CA;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #E2E8F0;
}
.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.625rem;
  top: 0.375rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #4338CA;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #4338CA;
}
.timeline-date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4338CA;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.timeline-text {
  font-size: 0.9375rem;
  color: #1E293B;
}

/* ---- Team cards ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.team-card {
  text-align: center;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  transition: box-shadow 0.2s;
}
.team-card:hover {
  box-shadow: 0 4px 20px rgba(67, 56, 202, 0.1);
}
/* Remove AI portrait img rule — using initial circles */
.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.25rem;
}
.team-card .team-role {
  font-size: 0.875rem;
  color: #4338CA;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.team-card .team-city {
  font-size: 0.8125rem;
  color: #64748B;
  margin-bottom: 0.5rem;
}
.team-card .team-linkedin {
  color: #64748B;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.team-card .team-linkedin:hover {
  color: #4338CA;
}

/* Mode B: initial-letter avatar circles */
.team-avatar-initial {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 auto 12px;
}
.team-initial-accent { background-color: #4338CA; }
.team-initial-dark { background-color: #1E293B; }

/* CEO Featured Card (text-only) */
.team-ceo-featured {
  background: #F8FAFC;
  border: 2px solid #4338CA;
  border-radius: 14px;
  padding: 40px;
  max-width: 640px;
  margin: 2rem 0 0;
  text-align: center;
}
.team-ceo-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 6px;
}
.team-ceo-title {
  font-size: 0.95rem;
  color: #4338CA;
  font-weight: 600;
  margin-bottom: 8px;
}
.team-ceo-city {
  font-size: 0.85rem;
  color: #64748B;
  margin-bottom: 16px;
}
.team-ceo-bio {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: left;
}

/* ---- Advisors ---- */
.advisors-section {
  margin-top: 3rem;
}
.advisors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.advisor-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 1.25rem;
}
.advisor-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.25rem;
}
.advisor-card .advisor-role {
  font-size: 0.875rem;
  color: #4338CA;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.advisor-card .advisor-city {
  font-size: 0.8125rem;
  color: #64748B;
}

/* ---- Blog cards ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.blog-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover {
  box-shadow: 0 4px 20px rgba(67, 56, 202, 0.1);
}
.blog-card-body {
  padding: 1.25rem;
}
.blog-category {
  display: inline-block;
  background: #EEF2FF;
  color: #4338CA;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-date {
  font-size: 0.8125rem;
  color: #64748B;
  margin-bottom: 0.5rem;
  display: block;
}
.blog-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.9375rem;
  color: #64748B;
  margin-bottom: 1rem;
}
.blog-read-more {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4338CA;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-read-more:hover {
  color: #3730A3;
}

/* ---- Contact info ---- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-info-item i {
  color: #4338CA;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.contact-info-item a {
  color: #1E293B;
  text-decoration: none;
}
.contact-info-item a:hover {
  color: #4338CA;
}
.contact-demo-btn {
  display: inline-block;
  background: #4338CA;
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 1rem;
  transition: background 0.2s;
}
.contact-demo-btn:hover {
  background: #3730A3;
  color: #fff;
}

/* ---- Map container ---- */
.map-container {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

/* ---- Integrations logos ---- */
.integrations-strip {
  background: #F8FAFC;
  padding: 3rem 0;
  text-align: center;
}
.integrations-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.integration-logo-item {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #64748B;
  min-width: 100px;
  text-align: center;
}

/* ---- Feature alternating sections ---- */
.feature-section {
  padding: 4rem 0;
}
.feature-section:nth-child(even) {
  background: #F8FAFC;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature-grid.reverse {
  direction: rtl;
}
.feature-grid.reverse > * {
  direction: ltr;
}
.feature-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 1rem;
}
.feature-text p {
  color: #64748B;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.feature-stat-badge {
  display: inline-block;
  background: #EEF2FF;
  color: #4338CA;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35rem 0.875rem;
  border-radius: 999px;
  margin-top: 0.5rem;
}
.feature-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(67, 56, 202, 0.12);
}
.feature-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Legal prose ---- */
.legal-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: #1E293B;
  line-height: 1.8;
}
.legal-prose h1 {
  margin-bottom: 0.25rem;
}
.legal-prose .effective-date {
  color: #64748B;
  font-size: 0.9375rem;
  margin-bottom: 2.5rem;
}
.legal-prose h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.legal-prose p, .legal-prose li {
  color: #64748B;
  font-size: 0.9375rem;
}
.legal-prose ul {
  padding-left: 1.5rem;
}

/* ---- Blog newsletter visual ---- */
.blog-newsletter-visual {
  background: #EEF2FF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-newsletter-inner {
  text-align: center;
  padding: 2rem;
}
.blog-newsletter-icon {
  font-size: 3rem;
  color: #4338CA;
  margin-bottom: 1rem;
  display: block;
}
.blog-newsletter-label {
  color: #4338CA;
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid.reverse {
    direction: ltr;
  }
  .footer-extended .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .trust-strip {
    gap: 1.5rem;
  }
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* Fix 1: Article page max-width */
.article-layout, .article-container, .article-content, .blog-article, .post-content { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }

/* Fix 2: Article text color */
.article-body p, .article-content p, .post-content p, .blog-article p { color: #444; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.article-body h2, .article-content h2, .post-content h2 { color: #222; font-size: 24px; margin-top: 36px; margin-bottom: 16px; }
.article-body h3, .article-content h3, .post-content h3 { color: #333; font-size: 20px; margin-top: 28px; margin-bottom: 12px; }
.article-body ul, .article-body ol, .article-content ul, .article-content ol { color: #444; margin-bottom: 20px; padding-left: 24px; }
.article-body li, .article-content li { margin-bottom: 8px; line-height: 1.7; }

/* Testimonial card bottom alignment */
.testimonial-card, [class*="testimonial"] {
    display: flex;
    flex-direction: column;
}
.testimonial-card .testimonial-text, [class*="testimonial"] p {
    flex-grow: 1;
}
.testimonial-card .testimonial-author, [class*="testimonial"] [class*="author"] {
    margin-top: auto;
}
