/* ============================================================
   CodeMeYo Marketing Site — Styles
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --crimson: #8B1A2B;
  --crimson-light: #B22640;
  --crimson-dark: #5E0F1B;
  --crimson-glow: rgba(139, 26, 43, 0.45);
  --bg: #000000;
  --bg-elevated: #0A0A0A;
  --bg-card: #0D0D0D;
  --bg-card-hover: #141414;
  --border: #1A1A1A;
  --border-light: #252525;
  --text: #E8E8E8;
  --text-muted: #888888;
  --text-dim: #555555;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Animations (fade-in on scroll) --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(0, 0, 0, 0.9);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 24px 20px;
  gap: 16px;
}

.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-mobile a:hover {
  color: var(--white);
}

.nav-mobile.open {
  display: flex;
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--crimson);
  color: var(--white);
  border: 1px solid var(--crimson-light);
}

.btn-primary:hover {
  background: var(--crimson-light);
  box-shadow: 0 0 30px var(--crimson-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  background: var(--bg-card);
  border-color: var(--text-dim);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius);
}

.btn-block {
  width: 100%;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 26, 43, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 26, 43, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.hero-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.hero-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--crimson-glow), transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px var(--crimson-glow));
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
}

.text-gradient {
  background: linear-gradient(135deg, var(--crimson-light), #D44060, var(--crimson));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-platforms {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--crimson), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* --- Section Shared --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--crimson-light);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(139, 26, 43, 0.3);
  border-radius: 100px;
  background: rgba(139, 26, 43, 0.08);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Features --- */
.features {
  padding: 120px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(139, 26, 43, 0.12);
  border: 1px solid rgba(139, 26, 43, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--crimson-light);
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Tech Strip Marquee --- */
.tech-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg-elevated);
}

.tech-strip-inner {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.tech-marquee {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}

.tech-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.tech-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--crimson);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Download --- */
.download {
  padding: 120px 0;
  position: relative;
}

.download-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
}

.download-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.download-card-icon {
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.download-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.download-card-formats {
  font-size: 14px;
  color: var(--crimson-light);
  font-weight: 500;
  margin-bottom: 4px;
}

.download-card-reqs {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.btn-download {
  width: 100%;
}

@media (max-width: 768px) {
  .download-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* --- Support / Donate --- */
.support {
  padding: 120px 0;
}

.support-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.support-content {
  flex: 1;
}

.support-text {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.support-visual {
  position: relative;
  flex-shrink: 0;
}

.support-glow {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--crimson-glow), transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

.support-icon {
  width: 140px;
  height: 140px;
  border-radius: 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .support-inner {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 28px;
    gap: 40px;
  }
  .support-icon {
    width: 100px;
    height: 100px;
  }
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.footer-name {
  font-weight: 700;
  font-size: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-copy {
    margin-top: 8px;
  }
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--text-dim);
  padding: 4px;
  transition: color var(--transition);
}

.modal-close:hover {
  color: var(--white);
}

.modal-icon {
  text-align: center;
  margin-bottom: 20px;
}

.modal-robot {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-group-half {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-input {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input::placeholder {
  color: var(--text-dim);
}

.form-input:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(139, 26, 43, 0.2);
}

.modal-privacy {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 4px;
}

/* Modal success state */
.modal-success {
  display: none;
  text-align: center;
}

.modal-success.show {
  display: block;
}

.modal-form.hidden {
  display: none;
}

.success-check {
  color: #22c55e;
  margin-bottom: 16px;
}

.modal-success .modal-title {
  margin-bottom: 8px;
}

.modal-success .modal-subtitle {
  margin-bottom: 24px;
}

/* --- Page Hero (subpages) --- */
.page-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-content {
  padding: 80px 0;
  background: var(--bg);
}

.content-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.content-narrow h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 48px 0 16px;
}

.content-narrow h2:first-child {
  margin-top: 0;
}

.content-narrow p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-narrow a {
  color: var(--crimson-light);
}

.content-narrow a:hover {
  color: var(--white);
}

.content-narrow ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.content-narrow ul li {
  font-size: 16px;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.content-narrow ul li a {
  color: var(--crimson-light);
  transition: color var(--transition);
}

.content-narrow ul li a:hover {
  color: var(--white);
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-answer a {
  color: var(--crimson-light);
}

.faq-answer a:hover {
  color: var(--white);
}

/* --- Contact Cards --- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-card .btn {
  display: inline-flex;
}

@media (max-width: 600px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* --- Utilities --- */
@media (max-width: 600px) {
  .features {
    padding: 80px 0;
  }
  .download {
    padding: 80px 0;
  }
  .support {
    padding: 80px 0;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-dim);
}

/* Selection */
::selection {
  background: rgba(139, 26, 43, 0.4);
  color: var(--white);
}


/* ============================================================
   LLM Providers Section
   ============================================================ */
.providers {
  padding: 120px 0;
  background: radial-gradient(ellipse at top, rgba(139, 26, 43, 0.05), transparent 70%);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.provider-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.provider-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.provider-card:hover::before {
  opacity: 1;
}

.provider-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.provider-company {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.provider-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .providers-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Agent Modes --- */
.agent-modes {
  margin-top: 80px;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.agent-modes-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.agent-modes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.agent-mode {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: left;
  transition: all var(--transition);
}

.agent-mode:hover {
  border-color: var(--crimson);
  transform: translateY(-2px);
}

.agent-mode-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--crimson-light);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.agent-mode-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .agent-modes {
    padding: 32px 24px;
  }
  .agent-modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .agent-modes-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MCP Servers Section
   ============================================================ */
.mcp {
  padding: 120px 0;
}

.mcp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.mcp-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.mcp-category:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.mcp-category-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--crimson-light);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mcp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mcp-tag {
  display: inline-block;
  padding: 7px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  transition: all var(--transition);
}

.mcp-tag:hover {
  border-color: var(--crimson);
  background: rgba(139, 26, 43, 0.08);
  color: var(--white);
}

.mcp-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .providers {
    padding: 80px 0;
  }
  .mcp {
    padding: 80px 0;
  }
  .agent-modes {
    margin-top: 56px;
  }
}
