


*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

:root {
  --blue: #1a56ff;
  --blue-mid: #4f75ff;
  --blue-light: #e8edff;
  --cyan: #00d4ff;
  --dark: #111320;
  --muted: #6b7280;
  --white: #ffffff;
  --off: #f7f8fc;
  --border: #e2e6f0;
  --live: #10b981;
}

body {
  background: var(--white);
  color: var(--dark);
  font-family: 'Inter', system-ui, sans-serif;
}

/* =========================
   HERO — MAIN HEAD
========================= */
.main-head {
  background: linear-gradient(135deg, #0d1526 0%, #0f2044 50%, #0a1a3a 100%);
  position: relative;
  overflow: hidden;
}

.main-head::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.main-head::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(26,86,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.agent-system {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 3rem) clamp(4rem, 8vw, 7rem);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.agents-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(26,86,255,0.4);
  background: rgba(26,86,255,0.08);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #6b9fff !important;
  margin-bottom: 1.5rem;
}

.agent-system h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.agent-system h1 span { color: var(--cyan) !important; }

.agent-system p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* Search */
.search-box {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.search-icon {
  position: absolute;
  top: 50%; left: 1rem;
  transform: translateY(-50%);
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  z-index: 1;
}

.input-control {
  width: 100%;
  height: 3rem;
  padding: 0 1rem 0 2.75rem;
  border-radius: 8px;
  border: 1px solid rgba(26,86,255,0.35);
  background: rgba(255,255,255,0.06);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.25s ease;
}

.input-control::placeholder { color: rgba(255,255,255,0.35); }

.input-control:hover { border-color: rgba(26,86,255,0.6); }

.input-control:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(26,86,255,0.2);
}

/* =========================
   AGENTS GRID
========================= */
.second-head {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--off);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.card-link {
  text-decoration: none !important;
  display: block;
}

.card-link:hover { text-decoration: none !important; }

.agent-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.agent-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(26,86,255,0.12);
}

/* Featured — Agent 01 */
.featured-agent {
  border-color: rgba(26,86,255,0.35) !important;
  box-shadow: 0 4px 20px rgba(26,86,255,0.08);
}

.featured-agent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

/* Agent number + badge row */
.agent-num-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 0;
}

.num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
}

.featured-agent .num { color: var(--blue-light); }

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--live) !important;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
}

.live-dot {
  width: 6px; height: 6px;
  background: var(--live);
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: inline-block;
}

.soon-tag {
  display: inline-block;
  background: var(--off);
  border: 1px solid var(--border);
  color: var(--muted) !important;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
}

/* Image */
.agent-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-top: 12px;
}

.agent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.agent-card:hover .agent-image img {
  transform: scale(1.04);
}

/* Content */
.agent-content {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agent-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  color: var(--dark) !important;
  margin: 0;
  line-height: 1.3;
}

.agent-content h3 {
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--muted) !important;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

.agent-content p {
  color: var(--blue) !important;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: auto 0 0;
  padding-top: 8px;
  transition: gap 0.2s ease;
}

.agent-content p:hover { gap: 10px; }

.agent-content p i {
  transition: transform 0.2s ease;
}

.agent-content p:hover i { transform: translateX(4px); }

/* =========================
   COMPARE CTA
========================= */
.third-section {
  background: linear-gradient(135deg, #0d1526 0%, #0f2044 50%, #061030 100%);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.third-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: min(700px, 90vw); height: 500px;
  background: radial-gradient(ellipse, rgba(26,86,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.third-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(26,86,255,0.4);
  background: rgba(26,86,255,0.08);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b9fff !important;
}

.third-section-title h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: -2px;
  line-height: 1.05;
  margin: 0;
}

.third-section-title h1 span { color: var(--cyan) !important; }

.third-section-title p {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

.Comparison { margin: 0.5rem auto 0; }

.Comparison .btn {
  padding: 13px 32px;
  height: auto;
  width: auto;
  border-radius: 8px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(26,86,255,0.35);
}

.Comparison .btn:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,86,255,0.45);
  color: #fff !important;
}

.Comparison .btn i { transition: transform 0.2s ease; }
.Comparison .btn:hover i { transform: translateX(4px); }

/* =========================
   KEYFRAMES
========================= */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .status-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .agent-system { padding: 4rem 1.5rem 3rem; }
  .status-grid { grid-template-columns: 1fr; gap: 16px; }
  .second-head { padding: 2.5rem 1.25rem; }
  .agent-image { height: 180px; }
}

@media (max-width: 480px) {
  .agent-system h1 { letter-spacing: -1px; }
  .input-control { font-size: 0.9rem; }
  .third-section-title h1 { letter-spacing: -1px; }
  .Comparison .btn { width: 100%; justify-content: center; }
}
