html {
  scroll-behavior: smooth;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  transition:
    background-color 200ms ease,
    color 200ms ease;
}

.corporate-hero-text {
  color: #ffffff;
}

.corporate-hero-copy {
  color: rgba(255, 255, 255, 0.78);
}

.corporate-hero-meta {
  color: rgba(255, 255, 255, 0.62);
}

.corporate-hero-secondary {
  color: #ffffff;
}

.corporate-hero-secondary:hover {
  color: #f6c90e;
}

.corporate-hero-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.corporate-hero-card-copy {
  color: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .corporate-hero {
  border-color: rgba(17, 17, 17, 0.08) !important;
}

html[data-theme="light"] .corporate-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.82) 36%,
    rgba(0, 0, 0, 0.58) 60%,
    rgba(0, 0, 0, 0.78) 100%
  ) !important;
}

html[data-theme="light"] .corporate-hero-text,
html[data-theme="light"] .corporate-hero-copy,
html[data-theme="light"] .corporate-hero-meta,
html[data-theme="light"] .corporate-hero-secondary,
html[data-theme="light"] .corporate-hero-card-copy {
  color: #ffffff !important;
}

html[data-theme="light"] .corporate-hero-copy {
  color: rgba(255, 255, 255, 0.78) !important;
}

html[data-theme="light"] .corporate-hero-meta,
html[data-theme="light"] .corporate-hero-card-copy {
  color: rgba(255, 255, 255, 0.68) !important;
}

html[data-theme="light"] .corporate-hero-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

html[data-theme="light"] .corporate-hero-secondary:hover {
  color: #f6c90e !important;
}

html[data-theme="light"] .corporate-hero-card {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

html[data-theme="light"] body {
  background: #ffffff !important;
  color: #141414 !important;
}

html[data-theme="light"] .theme-header {
  border-color: rgba(17, 17, 17, 0.08) !important;
  background: rgba(255, 255, 255, 0.96) !important;
}

html[data-theme="light"] .theme-footer {
  border-color: rgba(17, 17, 17, 0.08) !important;
  background: #ffffff !important;
}

html[data-theme="light"] .theme-panel,
html[data-theme="light"] .theme-frame,
html[data-theme="light"] .theme-soft-section {
  border-color: rgba(17, 17, 17, 0.08) !important;
  background: #ffffff !important;
}

html[data-theme="light"] .theme-overlay {
  border-color: rgba(17, 17, 17, 0.08) !important;
  background: rgba(255, 255, 255, 0.94) !important;
}

html[data-theme="light"] .theme-toggle {
  border-color: rgba(17, 17, 17, 0.12) !important;
  color: #141414 !important;
}

html[data-theme="light"] .theme-toggle:hover {
  border-color: rgba(246, 201, 14, 0.8) !important;
  color: #946f00 !important;
}

.nav-link {
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2rem;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.nav-link:hover {
  border-color: rgba(246, 201, 14, 0.7);
  color: #f6c90e;
}

.nav-link-active {
  border-color: #f6c90e;
  color: #f6c90e;
}

html[data-theme="light"] .nav-link {
  color: rgba(20, 20, 20, 0.78) !important;
}

html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] .nav-link-active {
  color: #946f00 !important;
}

html[data-theme="light"] .text-white,
html[data-theme="light"] [class*="text-white/"] {
  color: #161616 !important;
}

html[data-theme="light"] [class*="text-black/"] {
  color: rgba(20, 20, 20, 0.78) !important;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.4rem;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  display: flex;
  min-width: 220px;
  flex: 0 0 220px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  padding: 1.75rem;
}

.carousel-logo {
  max-height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.05);
  opacity: 0.92;
}

html[data-theme="light"] .carousel-card {
  border-color: rgba(17, 17, 17, 0.08);
  background: #ffffff;
}

html[data-theme="light"] .carousel-logo {
  filter: none;
  opacity: 1;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(246, 201, 14, 0.25);
  background: rgba(246, 201, 14, 0.08);
  color: #f6c90e;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.carousel-button:hover {
  transform: translateY(-1px);
  border-color: rgba(246, 201, 14, 0.65);
  background: rgba(246, 201, 14, 0.16);
}

html[data-theme="light"] .carousel-button {
  border-color: rgba(17, 17, 17, 0.1);
  background: rgba(246, 201, 14, 0.14);
  color: #946f00;
}

@media (max-width: 767px) {
  .carousel-card {
    min-width: 170px;
    flex-basis: 170px;
  }

  .carousel-logo {
    max-height: 56px;
  }
}
