

/* Start:/local/templates/mcp/styles.css?178219961439*/
/*# sourceMappingURL=styles.css.map */

/* End */


/* Start:/local/templates/mcp/template_styles.css?178219961417529*/
@charset "UTF-8";
/* ========================================
   BxMCP — Premium Light Landing
   ======================================== */
/* ── Reset ─────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Vars ──────────────────────────── */
:root {
  --bg: #f8f9fc;
  --surface: #fff;
  --surface-alt: #f1f3f8;
  --border: #e2e6ed;
  --border-light: #eef0f4;
  --text: #111318;
  --text-secondary: #4a4f5c;
  --text-muted: #7c8290;
  --accent: #4361ee;
  --accent-light: #7b93f7;
  --accent-glow: rgba(67,97,238,0.15);
  --accent2: #7209b7;
  --green: #10b981;
  --green-bg: #ecfdf5;
  --green-border: #a7f3d0;
  --red: #ef4444;
  --red-bg: #fef2f2;
  --red-border: #fecaca;
  --radius: 14px;
  --radius-sm: 10px;
  --max-w: 880px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Background mesh ───────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 80% 40% at 20% 0%, rgba(67, 97, 238, 0.04), transparent), radial-gradient(ellipse 50% 50% at 80% 100%, rgba(114, 9, 183, 0.03), transparent), radial-gradient(ellipse 60% 30% at 50% 50%, rgba(67, 97, 238, 0.02), transparent);
  pointer-events: none;
}

/* ── Typography ────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #111318 0%, #4361ee 50%, #7209b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.15rem;
}

h4 {
  font-size: 1rem;
}

p {
  color: var(--text-secondary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #3050d0;
}

code {
  font-family: "SF Mono", "Fira Code", "Cascadia Code", "Courier New", monospace;
  font-size: 0.85em;
  background: #eef1f9;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  color: #4361ee;
}

pre {
  font-family: "SF Mono", "Fira Code", "Cascadia Code", "Courier New", monospace;
  font-size: 0.84rem;
  line-height: 1.65;
  overflow-x: auto;
}

pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  color: #2d3748;
}

/* ── Nav ───────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
}
nav.nav-scrolled {
  box-shadow: var(--shadow-md);
}

nav .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

nav .logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
nav .logo:hover {
  opacity: 0.7;
  text-decoration: none;
}
nav .logo small {
  font-weight: 500;
  font-size: 10px;
  color: var(--accent);
  margin-left: 4px;
  background: #eef1f9;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

nav .links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav .links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
nav .links a:hover {
  color: var(--text);
  text-decoration: none;
}

/* ── Sections ──────────────────────── */
section {
  padding: 3.5rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 1.5rem 4rem;
}
#hero h1 {
  margin-bottom: 1.5rem;
}
#hero > p {
  font-size: 1.08rem;
  max-width: 580px;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.hero-hint {
  margin-top: 0.75rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ── Uptime Hero Counter ───────────── */
.uptime-hero {
  margin-bottom: 2rem;
  width: 100%;
  max-width: 700px;
}

.uptime-hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.uptime-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.uptime-digits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
  opacity: 0.5;
}

.uptime-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}
.uptime-unit span {
  font-family: "SF Mono", "Fira Code", "Cascadia Code", "Courier New", monospace;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0.04em;
  background: var(--surface-alt);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  min-width: 2.4ch;
  text-align: center;
}
.uptime-unit small {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: lowercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.uptime-sep {
  font-family: "SF Mono", "Fira Code", "Cascadia Code", "Courier New", monospace;
  font-size: 1.8rem;
  color: var(--border);
  font-weight: 700;
  padding-bottom: 1.2rem;
}

/* ── Hero Status Pill ──────────────── */
.hero-status {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 600;
}
.hero-status.online {
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  color: #059669;
}
.hero-status.online .status-dot {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
  animation: dot-glow 2.5s ease-in-out infinite;
}
.hero-status.offline {
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  color: #dc2626;
}
.hero-status.offline .status-dot {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}
.hero-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes dot-glow {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0.05);
  }
}
/* ── Section Headers ───────────────── */
.section-title {
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-desc {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 0.92rem;
  text-align: center;
  margin: 0 auto 1.5rem;
}

/* ── Code Block ────────────────────── */
.code-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  max-width: 520px;
  width: 100%;
  text-align: left;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.code-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
}
.code-block pre {
  margin: 0;
}
.code-block code {
  color: #2d3748;
  font-size: 0.84rem;
}

/* ── Tools Grid ────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.6rem;
}

.tool-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.tool-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(67, 97, 238, 0.08);
  transform: translateY(-2px);
}
.tool-card:hover h4 {
  color: #3050d0;
}
.tool-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--accent);
  font-family: "SF Mono", "Fira Code", "Cascadia Code", "Courier New", monospace;
  transition: color 0.2s;
}
.tool-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Problem / Solution ────────────── */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}
.card ul {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.card ul li {
  padding: 0.3rem 0 0.3rem 1.3rem;
  position: relative;
  line-height: 1.5;
}
.card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
}

.card.problem {
  border-left: 3px solid #fca5a5;
}
.card.problem ul li::before {
  color: var(--text-muted);
}

.card.solution {
  border-left: 3px solid var(--accent);
}
.card.solution ul li::before {
  color: var(--accent);
}

/* ── How It Works ──────────────────── */
.how-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.how-details-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.how-details-card h4 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.how-details-card ul {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.how-details-card ul li {
  padding: 0.3rem 0 0.3rem 1.3rem;
  position: relative;
  line-height: 1.5;
}
.how-details-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* ── Prompts ───────────────────────── */
.prompt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.prompt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.prompt-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--surface-alt);
}

.prompt-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  flex: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prompt-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text-muted);
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.prompt-copy:hover {
  background: var(--surface-alt);
  border-color: #ccc;
  color: var(--text);
}
.prompt-copy.copied {
  background: var(--green-bg);
  border-color: var(--green-border);
  color: #059669;
}

.prompt-copy-text {
  display: none;
}

.prompt-copy.copied .prompt-copy-text {
  display: inline;
}

.prompt-copy.copied svg {
  display: none;
}

.prompt-body {
  padding: 1rem 1.2rem;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-secondary);
  white-space: pre-wrap;
  word-break: break-word;
  user-select: all;
}

/* ── Support ───────────────────────── */
#support {
  text-align: center;
  background: var(--surface-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3rem 1.5rem;
}
#support .section-title {
  margin-bottom: 0.5rem;
}
#support p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 0.4rem;
}
#support a {
  font-weight: 600;
}

/* ── SEO Text ──────────────────────── */
#seo-text {
  border-top: 1px solid var(--border-light);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
#seo-text h2 {
  margin-bottom: 1rem;
}
#seo-text h3 {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
}
#seo-text p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.seo-text-inner {
  max-width: 100%;
}

.seo-tools-list {
  list-style: none;
  margin: 0.5rem 0 1.25rem;
  columns: 2;
  column-gap: 2rem;
}
.seo-tools-list li {
  font-size: 0.84rem;
  color: var(--text-secondary);
  padding: 0.2rem 0;
  line-height: 1.5;
  break-inside: avoid;
}
.seo-tools-list strong {
  font-family: "SF Mono", "Fira Code", "Cascadia Code", "Courier New", monospace;
  font-size: 0.84em;
  color: var(--accent);
}

.seo-text-footer {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border-light);
}

/* ── Footer ────────────────────────── */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-muted);
}
footer a {
  color: var(--text-secondary);
  text-decoration: none;
}
footer a:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-content p {
  margin-bottom: 0.25rem;
}

.footer-author {
  font-size: 0.84rem;
  color: var(--text-muted);
}
.footer-author a {
  color: var(--text-secondary);
}

/* ── Burger ────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 7px;
  z-index: 110;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Responsive ────────────────────── */
@media (max-width: 860px) {
  .burger {
    display: flex;
  }
  nav .links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    display: none;
    box-shadow: var(--shadow-md);
  }
  nav .links.open {
    display: flex;
  }
  nav .links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
  }
  nav .links a:last-child {
    border-bottom: none;
  }
  nav .links a:hover {
    color: var(--text);
  }
}
@media (max-width: 768px) {
  .problem-solution,
  .how-details,
  .prompt-grid,
  .seo-tools-list {
    grid-template-columns: 1fr;
    columns: 1;
  }
  .uptime-digits {
    gap: 0.3rem;
    padding: 1rem;
  }
  .uptime-unit span {
    font-size: 1.4rem;
    padding: 0.3rem 0.45rem;
    min-width: 2ch;
  }
  .uptime-sep {
    font-size: 1.3rem;
    padding-bottom: 0.8rem;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 15px;
  }
  section {
    padding: 2.5rem 1rem;
  }
  #hero {
    padding-top: 85px;
    padding-bottom: 2.5rem;
  }
  #hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  #hero > p {
    font-size: 0.92rem;
  }
  .uptime-digits {
    gap: 0.2rem;
    padding: 0.8rem 0.5rem;
  }
  .uptime-unit span {
    font-size: 1.2rem;
    padding: 0.25rem 0.35rem;
    min-width: 1.8ch;
    border-radius: 6px;
  }
  .uptime-unit small {
    font-size: 0.55rem;
  }
  .uptime-sep {
    font-size: 1.1rem;
    padding-bottom: 0.6rem;
  }
  .hero-status {
    font-size: 0.78rem;
  }
  .tools-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 1.5rem 1rem;
    font-size: 0.8rem;
  }
}

/*# sourceMappingURL=template_styles.css.map */

/* End */
/* /local/templates/mcp/styles.css?178219961439 */
/* /local/templates/mcp/template_styles.css?178219961417529 */
