body {
  font-family: "Inter", sans-serif;
  color: #090e1a;
  background: #eef3f9;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: #1f4e8c;
  text-decoration: none;
}
a:hover {
  color: #163b6a;
}

.site-nav {
  background: linear-gradient(90deg, #1f4e8c, #163b6a);
}
.site-nav .navbar-brand,
.site-nav .nav-link {
  color: #fff;
  font-weight: 500;
}
.site-nav .navbar-brand {
  letter-spacing: 0.01em;
}
.site-nav .nav-link.active, .site-nav .nav-link:hover {
  color: #dbeafe;
}

.hero {
  background: radial-gradient(circle at 10% 5%, #dbeafe 0%, transparent 35%), radial-gradient(circle at 90% 10%, #eff6ff 0%, transparent 45%), transparent;
}
.hero .btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.hero .btn::after {
  content: "";
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
  opacity: 0.7;
  transition: width 0.3s ease, height 0.3s ease;
  pointer-events: none;
}
.hero .btn:hover::after {
  width: 220%;
  height: 220%;
}
.hero .btn:hover {
  transform: translateY(-2px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: #e2ecfb;
  color: #1e3a63;
}
.eyebrow i {
  color: #349750;
}

.hero-card,
.panel,
.project-card,
.video-card,
.kpi-card,
.timeline-card {
  background: #fff;
  border: 1px solid #d9e2ef;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.hero-card {
  border-top: 3px solid rgba(52, 151, 80, 0.35);
}
.hero-card .text-success,
.hero-card i.fa-check {
  color: #349750 !important;
}
.hero-card li {
  white-space: nowrap;
  font-size: 0.95rem;
}

.kpi-card i {
  font-size: 1.2rem;
  color: #349750;
  margin-bottom: 0.5rem;
}
.kpi-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.kpi-card p {
  color: #8b939e;
  margin-bottom: 0;
}

.timeline-card p {
  color: #8b939e;
  margin-bottom: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chips span {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #334155;
}

.avatar-subtle {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #dbeafe;
}

.profile-inline {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 1rem;
}

.project-card img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.shot-placeholder {
  border: 2px dashed #cbd5e1;
  border-radius: 0.9rem;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: #64748b;
  background: #fff;
}

h1, h2, h3 {
  letter-spacing: -0.02em;
  color: #4f5766;
}

.counter-card .counter-value {
  font-size: 1.8rem;
  color: #0f172a;
}

.section-soft {
  background: #f8fbff;
}

.text-secondary {
  color: #475569 !important;
}

.py-lg-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.theme-toggle {
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .py-lg-6 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .hero-card li {
    white-space: normal;
  }
}
body.dark-mode {
  background: #13161b;
  color: #e2e8f0;
}
body.dark-mode .site-nav {
  background: linear-gradient(90deg, #0b1220, #050b16);
}
body.dark-mode .hero,
body.dark-mode .section-soft,
body.dark-mode .bg-light-subtle,
body.dark-mode .bg-white,
body.dark-mode section.py-5 {
  background: #101218 !important;
}
body.dark-mode .border-top,
body.dark-mode .border-bottom {
  border-color: rgba(148, 163, 184, 0.25) !important;
}
body.dark-mode .hero-card,
body.dark-mode .panel,
body.dark-mode .project-card,
body.dark-mode .video-card,
body.dark-mode .kpi-card,
body.dark-mode .timeline-card,
body.dark-mode .chips span,
body.dark-mode .shot-placeholder {
  background: #16203a;
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
body.dark-mode .counter-card {
  background: #16203a;
}
body.dark-mode .counter-card small {
  color: #94a3b8 !important;
}
body.dark-mode .counter-card .counter-value {
  color: #f8fafc;
}
body.dark-mode .badge.text-bg-light {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #e2e8f0 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
body.dark-mode .btn-outline-dark {
  color: #e2e8f0;
  border-color: rgba(226, 232, 240, 0.3);
}
body.dark-mode .btn-outline-dark:hover {
  background: rgba(226, 232, 240, 0.15);
}
body.dark-mode .text-secondary {
  color: #cbd5f5 !important;
}
body.dark-mode .eyebrow {
  background: rgba(59, 130, 246, 0.18);
  color: #e2e8f0;
}
body.dark-mode .timeline-card.is-active {
  border-color: rgba(96, 230, 209, 0.6);
}/*# sourceMappingURL=main.css.map */