/* ==========================================================================
   MVPDemo.online - Minimalist Dark Theme (Zero loud colors, rock-solid layout)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --bg-body: #000000;
  --bg-card: #0c0c0e;
  --bg-input: #141417;
  --bg-hover: #1c1c21;

  --border-color: #27272a;
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --accent-green: #10b981;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: #000000;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; font-size: inherit; outline: none; border: none; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.03em; color: #ffffff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}
.btn-primary:hover {
  background: #e4e4e7;
}

.btn-secondary {
  background: #18181b;
  color: #ffffff;
  border: 1px solid #27272a;
}
.btn-secondary:hover {
  background: #27272a;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #27272a;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #a1a1aa;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-link:hover { color: #ffffff; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; background: transparent; color: #ffffff; font-size: 1.3rem; cursor: pointer; }

/* Hero */
.hero-section {
  padding: 110px 0 50px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: #0c0c0e;
  border: 1px solid #27272a;
  border-radius: 9999px;
  color: #a1a1aa;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #a1a1aa;
  max-width: 580px;
  margin: 0 auto 36px;
}

/* Deploy Card */
.deploy-card {
  width: 100%;
  max-width: 580px;
  margin: 0 auto 36px;
  background: linear-gradient(180deg, #121216 0%, #0a0a0c 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.04);
  text-align: left;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.deploy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Segmented Tab Switcher */
.launchpad-tabs-wrapper {
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 4px;
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
}

.launch-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: transparent;
  color: #a1a1aa;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.launch-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.launch-tab.active {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.deploy-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.step-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #27272a;
  color: #d4d4d8;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50%;
  border: 1px solid #3f3f46;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e4e4e7;
  letter-spacing: -0.01em;
}

.input-with-icon {
  position: relative;
  width: 100%;
  display: block;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #71717a;
  pointer-events: none;
}

.form-control {
  width: 100% !important;
  height: 46px;
  background: #151518;
  border: 1px solid #27272a;
  border-radius: 10px;
  padding: 0 16px;
  color: #ffffff;
  font-size: 0.92rem;
  box-sizing: border-box;
  display: block;
  transition: all 0.2s ease;
}

.input-with-icon .form-control {
  padding-left: 42px;
}

.form-control:focus {
  border-color: #71717a;
  background: #18181c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.sample-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #71717a;
  margin-top: 2px;
}

/* ==========================================================================
   4. Enhanced Visual Launchpad & Cards
   ========================================================================== */
.deploy-card {
  max-width: 620px;
  margin: 0 auto;
  background: rgba(14, 14, 17, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  position: relative;
  overflow: hidden;
}

.deploy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), rgba(168, 85, 247, 0.5), transparent);
}

.launchpad-tabs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #09090b;
  padding: 5px;
  border-radius: 12px;
  border: 1px solid #27272a;
  margin-bottom: 20px;
}

.launch-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #a1a1aa;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.launch-tab span.tab-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.launch-tab span.tab-desc {
  font-size: 0.72rem;
  color: #71717a;
  font-weight: 500;
}

.launch-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.launch-tab.active {
  background: #18181b;
  border-color: #3f3f46;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.launch-tab.active span.tab-title {
  color: #ffffff;
}
.launch-tab.active span.tab-desc {
  color: #a1a1aa;
}

/* AI Agent Selector Grid */
.ai-agent-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.ai-agent-card {
  background: #121215;
  border: 1px solid #27272a;
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ai-agent-card:hover {
  background: #18181c;
  border-color: #3f3f46;
  transform: translateY(-2px);
}

.ai-agent-card.active {
  background: rgba(59, 130, 246, 0.12);
  border-color: #3b82f6;
  box-shadow: 0 0 16px -2px rgba(59, 130, 246, 0.4), 0 0 0 1px #3b82f6 inset;
}

.ai-agent-card[data-agent="cursor"].active {
  background: rgba(139, 92, 246, 0.12);
  border-color: #8b5cf6;
  box-shadow: 0 0 16px -2px rgba(139, 92, 246, 0.4), 0 0 0 1px #8b5cf6 inset;
}

.ai-agent-card[data-agent="claude"].active {
  background: rgba(217, 119, 6, 0.12);
  border-color: #d97706;
  box-shadow: 0 0 16px -2px rgba(217, 119, 6, 0.4), 0 0 0 1px #d97706 inset;
}

.ai-agent-card[data-agent="copilot"].active {
  background: rgba(16, 185, 129, 0.12);
  border-color: #10b981;
  box-shadow: 0 0 16px -2px rgba(16, 185, 129, 0.4), 0 0 0 1px #10b981 inset;
}

.ai-agent-card[data-agent="wordpress"].active {
  background: rgba(6, 182, 212, 0.12);
  border-color: #06b6d4;
  box-shadow: 0 0 16px -2px rgba(6, 182, 212, 0.4), 0 0 0 1px #06b6d4 inset;
}

.ai-agent-icon {
  font-size: 1.25rem;
}

.ai-agent-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.ai-agent-badge {
  font-size: 0.65rem;
  color: #71717a;
}

.ai-agent-card.active .ai-agent-badge {
  color: #a1a1aa;
}

.method-card:hover {
  border-color: #3f3f46;
  background: #16161a;
}

.method-card.active {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  box-shadow: 0 0 0 1px #3b82f6;
}

.method-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.method-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
}

.method-desc {
  font-size: 0.72rem;
  color: #71717a;
  line-height: 1.3;
}

/* WordPress Template Selector Grid */
.wp-template-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}

.wp-template-card {
  background: #121215;
  border: 1px solid #27272a;
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.wp-template-card:hover {
  border-color: #3f3f46;
  background: #16161a;
}

.wp-template-card.active {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  box-shadow: 0 0 0 1px #10b981;
}

.wp-template-icon {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.wp-template-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
}

.wp-template-sub {
  font-size: 0.68rem;
  color: #71717a;
}

/* Subdomain Live Preview Banner */
.subdomain-live-preview {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 6px;
  padding: 6px 10px;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #93c5fd;
  font-family: var(--font-mono);
}

.preview-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: pulseGreen 2s infinite;
}

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

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

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

.step-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1f1f23;
  color: #e4e4e7;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid #27272a;
}

.step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #e4e4e7;
  margin: 0;
}

.step-hint {
  font-size: 0.72rem;
  color: #71717a;
  margin-left: auto;
}

.sample-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.sample-pills span {
  font-size: 0.72rem;
  color: #71717a;
  font-weight: 500;
}

.sample-pill {
  background: #141417;
  border: 1px solid #27272a;
  color: #a1a1aa;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sample-pill:hover {
  background: #27272a;
  color: #ffffff;
  border-color: #3f3f46;
}

.subdomain-input-box {
  display: flex;
  align-items: center;
  width: 100%;
  background: #121215;
  border: 1px solid #27272a;
  border-radius: 10px;
  height: 44px;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.subdomain-input-box:focus-within {
  border-color: #3b82f6;
  background: #16161a;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.subdomain-input-box input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0 14px;
  font-size: 0.92rem;
  color: #ffffff;
  font-family: var(--font-mono);
  outline: none;
  min-width: 0;
}

.subdomain-suffix {
  background: #18181b;
  border-left: 1px solid #27272a;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  color: #a1a1aa;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}

.btn-launch {
  width: 100% !important;
  height: 48px;
  font-size: 0.96rem;
  font-weight: 700;
  border-radius: 10px;
  margin-top: 4px;
  background: #ffffff;
  color: #000000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 6px 20px -4px rgba(255, 255, 255, 0.25);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-launch:hover {
  background: #f4f4f5;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -4px rgba(255, 255, 255, 0.35);
}

.card-footer-note {
  text-align: center;
  font-size: 0.74rem;
  color: #71717a;
  line-height: 1.4;
  margin-top: 4px;
}

/* Console & Success Box */
.deployment-console {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #27272a;
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.console-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
}

.console-timer {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #71717a;
}

.progress-bar-wrap {
  height: 3px;
  background: #27272a;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 14px;
}

.progress-bar-fill {
  height: 100%;
  background: #ffffff;
  transition: width 0.3s ease;
}

.console-logs {
  background: #000000;
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #a1a1aa;
  height: 110px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.log-line.info { color: #d4d4d8; }
.log-line.success { color: #10b981; font-weight: 600; }
.log-line.error { color: #ef4444; font-weight: 600; }

.deploy-success-box {
  margin-top: 18px;
  background: #000000;
  border: 1px solid #27272a;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.success-icon { font-size: 1.8rem; margin-bottom: 4px; }
.success-title { font-size: 1.2rem; color: #ffffff; margin-bottom: 2px; }
.success-subtitle { font-size: 0.8rem; color: #71717a; margin-bottom: 14px; }

.live-url-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0c0c0e;
  border: 1px solid #27272a;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.live-link-text {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: #38bdf8;
}

.btn-copy {
  background: #18181b;
  color: #ffffff;
  border: 1px solid #27272a;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.quota-counter-card {
  background: #0c0c0e;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.75rem;
  margin-bottom: 14px;
  text-align: left;
}
.quota-counter-header { display: flex; justify-content: space-between; }
.quota-pill { color: #10b981; font-weight: 600; }

.success-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 580px;
  margin: 0 auto;
  padding: 16px;
  background: #0c0c0e;
  border: 1px solid #27272a;
  border-radius: 10px;
}

.stat-item h3 { font-size: 1.3rem; color: #ffffff; margin-bottom: 2px; }
.stat-item p { color: #71717a; font-size: 0.75rem; font-weight: 500; }

/* Features Section */
.features-section { padding: 50px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 36px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #a1a1aa;
  background: #0c0c0e;
  border: 1px solid #27272a;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

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

.feature-card {
  background: #0c0c0e;
  border: 1px solid #27272a;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.2s ease;
}
.feature-card:hover { border-color: #3f3f46; }

.feature-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #141417;
  border: 1px solid #27272a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.feature-card h3 { font-size: 1rem; margin-bottom: 4px; }
.feature-card p { font-size: 0.85rem; color: #a1a1aa; }

/* Activity */
.showcase-section { padding: 30px 0 50px; }

.dns-visualizer {
  background: #0c0c0e;
  border: 1px solid #27272a;
  border-radius: 10px;
  padding: 16px;
  font-family: var(--font-mono);
  max-width: 680px;
  margin: 0 auto;
}

.dns-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #000000;
  border: 1px solid #27272a;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 0.8rem;
}
.dns-type { color: #10b981; font-weight: 600; width: 80px; }
.dns-host { color: #ffffff; font-weight: 600; flex: 1; }
.dns-target { color: #71717a; flex: 1; text-align: right; margin-right: 14px; }
.dns-badge { background: #18181b; border: 1px solid #27272a; color: #ffffff; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }

/* Ad Slots */
.ad-slot-wrapper {
  margin: 24px auto;
  max-width: 1080px;
  padding: 0 20px;
}

.ad-box {
  background: #0c0c0e;
  border: 1px dashed #27272a;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.ad-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #71717a;
  display: block;
  margin-bottom: 2px;
}
.ad-placeholder-content { color: #a1a1aa; font-size: 0.8rem; }
.ad-leaderboard { max-width: 728px; margin: 0 auto; min-height: 70px; }

/* FAQ list */
.faq-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal.active { opacity: 1; pointer-events: auto; }

.modal-content {
  background: #0c0c0e;
  border: 1px solid #27272a;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}

.modal-header {
  padding: 12px 18px;
  background: #000000;
  border-bottom: 1px solid #27272a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-title-group { display: flex; align-items: center; gap: 8px; }
.modal-close { background: transparent; color: #a1a1aa; font-size: 1.2rem; cursor: pointer; }

.form-notification {
  padding: 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  text-align: center;
  display: none;
}
.form-notification.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

/* Footer */
.footer {
  background: #000000;
  border-top: 1px solid #27272a;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.footer-brand p {
  color: #71717a;
  font-size: 0.8rem;
  margin-top: 8px;
  max-width: 260px;
}

.footer-col h4 { font-size: 0.85rem; margin-bottom: 10px; color: #ffffff; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { color: #a1a1aa; font-size: 0.8rem; }
.footer-col ul li a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid #27272a;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #71717a;
  font-size: 0.75rem;
}
.footer-badges { display: flex; gap: 6px; }
.footer-badge { background: #18181b; border: 1px solid #27272a; padding: 2px 6px; border-radius: 4px; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 380px;
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 10px;
  padding: 14px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(150%);
  transition: transform 0.3s ease;
}
.cookie-banner.show { transform: translateY(0); }

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .mobile-toggle { display: block; }
  .features-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .deploy-card { padding: 20px 16px; margin-left: 10px; margin-right: 10px; width: calc(100% - 20px); }
  .dns-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .dns-target { text-align: left; }
}

/* ==========================================================================
   Hostinger-Style Enterprise MCP & AI Agent Dashboard Styles
   ========================================================================== */
.hostinger-dash-container {
  color: #ffffff;
  font-family: var(--font-sans);
}

.mcp-ide-pills-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.mcp-ide-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #18181b;
  border: 1px solid #27272a;
  color: #a1a1aa;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mcp-ide-pill:hover {
  background: #27272a;
  color: #ffffff;
  border-color: #3f3f46;
}

.mcp-ide-pill.active {
  background: #000000;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.mcp-os-pills-bar {
  display: flex;
  gap: 8px;
  background: #18181b;
  padding: 4px;
  border-radius: 10px;
  width: fit-content;
  border: 1px solid #27272a;
  margin-bottom: 20px;
}

.mcp-os-pill {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #a1a1aa;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mcp-os-pill.active {
  background: #27272a;
  color: #ffffff;
  font-weight: 600;
}

.mcp-extension-hero {
  background: #121215;
  border: 1px solid #27272a;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .mcp-extension-hero {
    grid-template-columns: 1fr;
  }
}

.mcp-extension-badge-mock {
  background: linear-gradient(135deg, #18181b, #09090b);
  border: 1px solid #3f3f46;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mcp-manual-config-title {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #71717a;
  margin: 30px 0 20px;
  position: relative;
}

.mcp-manual-config-title::before,
.mcp-manual-config-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 100px);
  height: 1px;
  background: #27272a;
}
.mcp-manual-config-title::before { left: 0; }
.mcp-manual-config-title::after { right: 0; }

.mcp-step-section {
  margin-bottom: 28px;
}

.mcp-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.mcp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #27272a;
  color: #a1a1aa;
  font-size: 0.75rem;
  font-weight: 700;
}

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

.mcp-tool-checkbox-card {
  background: #141417;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mcp-tool-checkbox-card:hover {
  border-color: #3f3f46;
  background: #18181c;
}

.mcp-tool-checkbox-card.selected {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.06);
}

.mcp-tool-checkbox-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #6366f1;
  cursor: pointer;
  margin-top: 2px;
}

.mcp-tool-info strong {
  display: block;
  font-size: 0.88rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.mcp-tool-info p {
  font-size: 0.75rem;
  color: #71717a;
  line-height: 1.3;
  margin: 0;
}

.mcp-alert-banner {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  color: #a5b4fc;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.mcp-filepath-box {
  background: #141417;
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #a1a1aa;
  margin-top: 8px;
}

.mcp-json-editor-card {
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}

.mcp-json-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #141417;
  padding: 8px 14px;
  border-bottom: 1px solid #27272a;
  font-size: 0.75rem;
  color: #71717a;
  font-weight: 600;
}

.mcp-json-editor-body {
  padding: 16px;
  color: #38bdf8;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1.6;
  margin: 0;
  white-space: pre-wrap;
  max-height: 280px;
  overflow-y: auto;
}

.mcp-tokens-table-wrap {
  background: #141417;
  border: 1px solid #27272a;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
}

.mcp-tokens-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  text-align: left;
}

.mcp-tokens-table th {
  background: #18181b;
  color: #71717a;
  font-weight: 600;
  padding: 10px 14px;
  border-bottom: 1px solid #27272a;
}

.mcp-tokens-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #202024;
  color: #e4e4e7;
}

.what-you-can-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.what-card {
  background: #141417;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.what-card-icon {
  font-size: 1.4rem;
}

.what-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.what-card-desc {
  font-size: 0.75rem;
  color: #71717a;
  line-height: 1.4;
}

