:root {
  color-scheme: light;
  --bg: #f8fcfe;
  --bg-strong: #ffffff;
  --text: #0d2236;
  --muted: #2d4a5f;
  --primary: #2d7a3f;
  --secondary: #4ab96f;
  --accent: #1e5a2f;
  --card: #ffffff;
  --border: #c5dae6;
  --shadow: 0 26px 70px rgba(45, 122, 63, 0.08);
  --glow: 0 0 0 6px rgba(45, 122, 63, 0.1);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #f0f6f9;
  --bg-strong: #ffffff;
  --text: #0d2236;
  --muted: #2d4a5f;
  --primary: #2d7a3f;
  --secondary: #4ab96f;
  --accent: #1e5a2f;
  --card: #ffffff;
  --border: #c5dae6;
  --shadow: 0 24px 60px rgba(45, 122, 63, 0.08);
  --glow: 0 0 0 6px rgba(45, 122, 63, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top left, rgba(74, 185, 111, 0.05), transparent 45%),
    radial-gradient(circle at 20% 10%, rgba(45, 122, 63, 0.04), transparent 40%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 24px 0 64px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(45, 122, 63, 0.08), rgba(74, 185, 111, 0.06));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(45, 122, 63, 0.1), rgba(74, 185, 111, 0.08));
  border-radius: 16px;
  padding: 12px 20px;
  margin: 16px 0 0;
  position: relative;
  animation: slideDown 0.6s ease both;
  box-shadow: 0 8px 20px rgba(45, 122, 63, 0.08);
  overflow: hidden;
  border: 2px solid rgba(45, 122, 63, 0.15);
}

.announcement-bar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

.announcement-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.5), 
    transparent
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderPulse 2s ease-in-out infinite;
  pointer-events: none;
}

.announcement-icon {
  font-size: 1.4rem;
  animation: bounce 2s ease infinite, rotate 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transform-origin: center;
}

.announcement-text {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  animation: textGlow 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.announcement-text strong {
  color: #0a0a0a;
  font-weight: 800;
  background: linear-gradient(90deg, #0a0a0a, #2f2f2f, #0a0a0a);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShimmer 3s linear infinite;
}

.announcement-close {
  background: rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 1.4rem;
  color: #1a1a1a;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.announcement-close:hover {
  background: rgba(0, 0, 0, 0.25);
  transform: rotate(90deg) scale(1.1);
}

.announcement-bar.hidden {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.05);
  }
}

@keyframes rotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

@keyframes shine {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  100% {
    transform: translate(50%, 50%) rotate(45deg);
  }
}

@keyframes borderPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.6);
  }
}

@keyframes textShimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 32px;
  background: linear-gradient(90deg, transparent, rgba(74, 185, 111, 0.35), transparent);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(74, 185, 111, 0.12), transparent 40%);
  opacity: 0.9;
  animation: headerGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 8px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 16, 12, 0.98), rgba(18, 50, 28, 0.98), rgba(26, 80, 46, 0.95));
  border: 1px solid rgba(45, 122, 63, 0.45);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  border-radius: 8px;
  background: transparent;
  padding: 4px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-menu a {
  font-weight: 500;
  color: #ffffff;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  padding: 5px 2px;
  font-size: 0.88rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.nav-menu a:hover {
  color: #4ab96f;
  transform: translateY(-1px);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 4;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.theme-toggle {
  border: 1px solid var(--border);
  background: rgba(246, 247, 242, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  color: #0d2236;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 16px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3vw + 1.4rem, 4rem);
  line-height: 1.1;
  margin: 16px 0;
  color: #0d2236;
}

.lead {
  font-size: 1.1rem;
  color: #2d4a5f;
}

.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(45, 122, 63, 0.15);
  color: #0d2236;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #2d7a3f, #4ab96f);
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 122, 63, 0.3);
}

.btn.secondary {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
}

.btn.secondary:hover,
.btn.tertiary:hover {
  box-shadow: var(--glow);
}

.btn.tertiary {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

.nav-menu .theme-toggle:hover,
.nav-menu .btn:hover {
  box-shadow: var(--glow);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero-highlights h3 {
  font-size: 1.8rem;
  color: #0d2236;
}

.hero-value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
  animation: fadeInUp 0.8s ease-out;
}

.value-card {
  background: linear-gradient(135deg, rgba(45, 122, 63, 0.05), rgba(74, 185, 111, 0.03));
  border: 1.5px solid rgba(45, 122, 63, 0.12);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 185, 111, 0.1), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.value-card:hover::before {
  left: 100%;
}

.value-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(45, 122, 63, 0.08), rgba(74, 185, 111, 0.05));
  border-color: rgba(45, 122, 63, 0.2);
  box-shadow: 0 12px 32px rgba(45, 122, 63, 0.1);
}

.value-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.value-card:nth-child(1) .value-icon {
  animation-delay: 0s;
}

.value-card:nth-child(2) .value-icon {
  animation-delay: 0.2s;
}

.value-card:nth-child(3) .value-icon {
  animation-delay: 0.4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-card h4 {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin: 12px 0;
  color: #0d2236;
  font-weight: 700;
}

.value-card p {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #2d4a5f;
  margin: 0;
  line-height: 1.5;
}

.hero-focus {
  background: linear-gradient(135deg, rgba(45, 122, 63, 0.05), rgba(74, 185, 111, 0.03));
  border-left: 5px solid var(--primary);
  border-radius: 16px;
  padding: 24px 24px;
  margin: 24px 0;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(45, 122, 63, 0.12);
  box-shadow: 0 8px 32px rgba(45, 122, 63, 0.05);
}

.hero-focus h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 12px;
  color: #0d2236;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-focus p {
  margin: 0;
  color: #2d4a5f;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.6;
}

.hero-products {
  width: 100%;
  padding: 32px 0 0;
}

.hero-products-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0d2236;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero-products-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 2px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 100%;
}

.product-card {
  background: linear-gradient(135deg, rgba(45, 122, 63, 0.05), rgba(74, 185, 111, 0.03));
  border: 2px solid rgba(45, 122, 63, 0.12);
  border-radius: 18px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 185, 111, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(45, 122, 63, 0.2);
  box-shadow: 0 16px 32px rgba(45, 122, 63, 0.12), 
              0 0 0 1px rgba(45, 122, 63, 0.15);
}

.product-card:hover::before {
  opacity: 1;
}

.product-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.product-card:hover .product-icon {
  transform: scale(1.2) rotateY(360deg);
}

.product-card h3 {
  color: #0d2236;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.product-card:hover h3 {
  color: var(--primary);
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
  }
  
  .product-card {
    padding: 20px 12px;
  }
  
  .product-icon {
    font-size: 2.2rem;
  }
  
  .hero-products-title {
    font-size: 1.4rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .hero-value-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 18px 0;
  }
  
  .value-card {
    padding: 16px;
  }
  
  .value-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .value-card h4 {
    font-size: 1rem;
    margin: 8px 0;
  }
  
  .value-card p {
    font-size: 0.9rem;
  }
  
  .hero-focus h3 {
    font-size: 1.1rem;
  }
  
  .hero-focus p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .hero-highlights h3 {
    font-size: 1.6rem;
  }
  
  .hero-highlights p {
    font-size: 0.95rem;
  }
  
  .pill {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
  
  .btn {
    font-size: 0.95rem;
    padding: 11px 18px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .lead {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .hero-value-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 16px 0;
  }
  
  .value-card {
    padding: 14px;
  }
  
  .value-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .value-card h4 {
    font-size: 0.95rem;
    margin: 6px 0;
  }
  
  .value-card p {
    font-size: 0.85rem;
  }
  
  .hero-focus {
    padding: 18px 16px;
    margin: 18px 0;
  }
  
  .hero-focus h3 {
    font-size: 1rem;
  }
  
  .hero-focus p {
    font-size: 0.9rem;
  }
  
  .hero-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .hero-highlights h3 {
    font-size: 1.3rem;
  }
  
  .hero-highlights p {
    font-size: 0.85rem;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}

.hero-showcase {
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, rgba(74, 185, 111, 0.04), rgba(255, 255, 255, 0.98));
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(74, 185, 111, 0.1);
  box-shadow: var(--shadow);
  width: 100%;
}

.showcase-header h4 {
  margin-bottom: 6px;
  color: #0d2236;
  font-weight: 700;
  font-size: 1.3rem;
}

.showcase-header p {
  color: #2d4a5f;
  font-weight: 600;
}

.marquee {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(74, 185, 111, 0.1);
  padding: 12px;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  width: 240px;
  height: 280px;
  flex: 0 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(47, 47, 47, 0.1);
  box-shadow: 0 16px 30px rgba(47, 47, 47, 0.12);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.55));
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

[data-theme="dark"] .glass {
  background: rgba(18, 28, 52, 0.8);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section {
  padding: 72px 0;
}

.section.muted {
  background: linear-gradient(180deg, rgba(74, 185, 111, 0.04), rgba(255, 255, 255, 0.98));
  border-radius: 32px;
  padding: 72px 36px;
}

.section-heading {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.downloads-hero {
  padding-top: 32px;
  padding-bottom: 0;
}

.downloads-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.downloads-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding: 12px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
}

.downloads-helper {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.download-tab {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.download-tab.is-active {
  background: linear-gradient(135deg, rgba(45, 122, 63, 0.16), rgba(74, 185, 111, 0.16));
  border-color: rgba(45, 122, 63, 0.5);
  color: var(--text);
  box-shadow: 0 6px 14px rgba(45, 122, 63, 0.12);
  transform: translateY(-1px);
}

.downloads-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.downloads-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.download-card {
  background: linear-gradient(135deg, rgba(15, 24, 18, 0.92), rgba(45, 122, 63, 0.18));
  border: 1px solid rgba(45, 122, 63, 0.35);
  border-radius: 16px;
  padding: 12px 14px;
  display: grid;
  gap: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.download-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, transparent, rgba(45, 122, 63, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.download-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 122, 63, 0.3);
  box-shadow: 0 16px 32px rgba(45, 122, 63, 0.16);
}

.download-card:hover::after {
  opacity: 1;
}

.download-card h4 {
  margin: 0;
  color: #f1f7f2;
  font-size: 0.95rem;
  font-weight: 600;
}

.download-card p {
  margin: 0;
  color: rgba(241, 247, 242, 0.75);
  font-weight: 500;
  font-size: 0.8rem;
}

.download-card .download-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.download-card .download-size {
  font-size: 0.8rem;
  color: rgba(241, 247, 242, 0.8);
  font-weight: 500;
}

.download-card .download-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d7a3f, #3a8f54);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.78rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-card .download-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(45, 122, 63, 0.24);
}

.download-card .download-action span {
  font-size: 1rem;
}

.downloads-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.downloads-table thead th {
  text-align: left;
  background: linear-gradient(135deg, rgba(45, 122, 63, 0.12), rgba(74, 185, 111, 0.1));
  color: var(--text);
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}

.downloads-table tbody td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.downloads-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.6);
}

.downloads-table .downloads-empty {
  text-align: center;
  padding: 18px;
  color: var(--muted);
  font-weight: 600;
}

.btn-download {
  padding: 8px 14px;
  font-size: 0.85rem;
  border-radius: 10px;
}

.section-heading.split {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  animation: rise 0.9s ease both;
}

.about-card:nth-child(2) {
  animation-delay: 0.15s;
}

.about-card:nth-child(3) {
  animation-delay: 0.3s;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card,
.case,
.insights article {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.case:hover,
.insights article:hover,
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card ul {
  margin-top: 16px;
  padding-left: 18px;
  color: var(--muted);
}

.case {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case a {
  color: var(--primary);
  font-weight: 600;
}

.case-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
}

.metrics {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.metric {
  background: var(--card);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stack {
  display: grid;
  gap: 10px;
}

.chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  font-weight: 600;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerGlow {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.insights {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.media-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.media-card {
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.insights article span {
  color: var(--muted);
  font-size: 0.85rem;
}

.testimonial {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slider-btn {
  border: none;
  background: var(--bg);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.contact-form {
  background: var(--card);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(58, 91, 255, 0.2);
}

.form-note {
  color: var(--secondary);
  font-weight: 600;
}

.contact-info {
  display: grid;
  gap: 18px;
  color: var(--text);
}

.contact-block {
  display: grid;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
}

.contact-block h3 {
  color: #0d2236;
  margin: 0;
  font-weight: 700;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-item > div {
  position: relative;
  display: grid;
  gap: 6px;
  padding-left: 14px;
}

.contact-item > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(74, 185, 111, 0.7), rgba(255, 255, 255, 0.25), rgba(45, 122, 63, 0.7));
  box-shadow: 0 0 8px rgba(74, 185, 111, 0.35);
  opacity: 0.9;
}

.contact-item p {
  margin: 0;
  color: #0d2236;
}

[data-theme="light"] .contact-block {
  background: #ffffff;
}

[data-theme="light"] .contact-item p {
  color: #0d2236;
}

[data-theme="light"] .contact-block h3 {
  color: #0d2236;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(45, 122, 63, 0.08);
  color: var(--secondary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.info-card {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
}

.footer {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.footer-top a {
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

.footer-bottom {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 16px;
}

@media (max-width: 920px) {
  .section.muted {
    padding: 64px 24px;
  }

  .testimonial {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .slider-btn {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .nav {
    gap: 0 !important;
    padding: 10px 16px !important;
    justify-content: space-between !important;
    flex-wrap: wrap;
  }

  .brand {
    gap: 0 !important;
    margin-right: auto !important;
    flex-shrink: 0;
  }

  .brand-mark {
    width: 110px !important;
    height: 42px !important;
  }

  .nav-toggle {
    display: flex !important;
    order: 2;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: linear-gradient(135deg, rgba(10, 16, 12, 0.98), rgba(18, 50, 28, 0.98), rgba(26, 80, 46, 0.95));
    border: 1px solid rgba(45, 122, 63, 0.45);
    border-radius: 12px;
    padding: 16px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu a {
    padding: 14px 12px !important;
    font-size: 1.05rem !important;
    border-bottom: 1px solid rgba(45, 122, 63, 0.2);
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .brand-mark {
    width: 90px;
    height: 38px;
  }

  .nav-menu {
    gap: 6px;
  }

  .nav-menu a {
    font-size: 0.9rem;
    padding: 6px 3px;
  }

  .media-card img {
    height: 180px;
  }
}

/* Cache bust: 20260218012234 */
