/* ========== AMPLITICA — SHARED BASE STYLES ========== */
/* Minecraft pixel theme — square corners, black/white/gold */

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

:root {
  --white: #ffffff;
  --bg-soft: #f8f9fb;
  --bg-section: #fafbfc;
  --text-primary: #0a0f1e;
  --text-secondary: #5a6375;
  --text-muted: #8b95a9;
  --border: #e5e7ed;
  --border-light: #f0f1f4;
  --accent: #b08d3e;
  --accent-light: #f5efd8;
  --silver-1: #c0c4cc;
  --silver-2: #9ca3af;
  --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 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.1);
  --mc-green: #5C8A37;
  --mc-dark-green: #3a5c20;
  --mc-gray: #808080;
  --mc-light-gray: #A8A8A8;
  --mc-orange: #D47800;
  --mc-brown: #8B6A40;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Sora', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== SECTION LABELS ========== */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent); margin-bottom: 16px;
}
.section-label .label-line { width: 20px; height: 1.5px; background: var(--accent); }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border);
  transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 64px;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.04em;
  color: var(--text-primary);
  image-rendering: pixelated;
}
.nav-logo .logo-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--mc-green);
  margin-left: 2px;
  vertical-align: middle;
  image-rendering: pixelated;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a, .nav-dropdown-toggle {
  font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s; cursor: pointer; background: none; border: none;
  font-family: 'DM Sans', sans-serif;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-links a:hover, .nav-dropdown-toggle:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--text-primary); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 240px; background: white;
  border: 2px solid var(--border);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.08);
  padding: 10px 0; opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 22px;
  font-size: 0.86rem; color: var(--text-secondary);
  transition: all 0.15s;
}
.nav-dropdown-menu a:hover {
  color: var(--text-primary); background: var(--bg-soft);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 22px; background: var(--text-primary); color: white;
  border-radius: 4px; font-size: 0.85rem; font-weight: 600;
  transition: all 0.2s; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.nav-cta:hover { background: #1a2038; transform: translateY(-1px); }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--text-primary); color: white;
  border-radius: 4px; font-size: 0.95rem; font-weight: 600;
  transition: all 0.2s; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: #1a2038; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent; color: var(--text-primary);
  border-radius: 4px; font-size: 0.95rem; font-weight: 600;
  border: 2px solid var(--border); transition: all 0.2s; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-secondary:hover { border-color: var(--silver-2); background: var(--bg-soft); }

/* ========== SECTION COMMON ========== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-section); }
.section-center {
  text-align: center; max-width: 700px; margin: 0 auto 56px;
}
.section-center h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-center p {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
}

/* ========== HERO ========== */
.hero {
  padding: 128px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 52px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; background: var(--bg-soft);
  border: 2px solid var(--border); border-radius: 4px;
  font-size: 0.8rem; font-weight: 500; color: var(--text-secondary);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px; background: #5C8A37;
  border-radius: 0; animation: pulse 2s ease infinite;
  image-rendering: pixelated;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.08;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 .highlight {
  position: relative; display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0; height: 8px;
  background: rgba(92,138,55,0.2);
  z-index: -1; border-radius: 0;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 480px; margin-bottom: 32px; line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px; justify-content: flex-start;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-right { display: flex; flex-direction: column; gap: 14px; }

/* ========== STATS BAR ========== */
.stats-bar {
  padding: 40px 0; background: var(--bg-section);
  border-top: 2px solid var(--border-light);
  border-bottom: 2px solid var(--border-light);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-number {
  font-size: 2.2rem; font-weight: 800;
  font-family: 'Sora', sans-serif; letter-spacing: -0.03em;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ========== FEATURE CARDS ========== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  padding: 28px 24px;
  background: var(--bg-soft);
  border: 2px solid var(--border-light);
  border-radius: 0;
  transition: all 0.2s;
}
.feature-card:hover {
  background: white; box-shadow: 4px 4px 0 rgba(0,0,0,0.06);
  border-color: var(--border); transform: translate(-2px,-2px);
}
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ========== ON-PREMISE SECTION ========== */
.onprem-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #2a2d33 0%, #18191c 100%);
  color: white;
}
.onprem-section .section-center h2 { color: white; }
.onprem-section .section-center p { color: rgba(255,255,255,0.5); }
.onprem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.onprem-card {
  padding: 28px; border: 2px solid rgba(255,255,255,0.08);
  border-radius: 0; background: rgba(255,255,255,0.03);
  transition: all 0.2s;
}
.onprem-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.onprem-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: white; }
.onprem-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 100px 0; text-align: center;
  background: linear-gradient(180deg, var(--bg-section) 0%, white 100%);
}
.cta-section h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 480px; margin: 0 auto 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; }

/* ========== FOOTER ========== */
.footer { padding: 56px 0 28px; border-top: 2px solid var(--border-light); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem; font-weight: 800; letter-spacing: -0.04em;
  color: var(--text-primary); margin-bottom: 14px;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 280px; }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 0.85rem; color: var(--text-secondary);
  padding: 5px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border-light);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-social a {
  width: 34px; height: 34px; border-radius: 0;
  background: var(--bg-soft); border: 2px solid var(--border-light);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.88rem; color: var(--text-muted); transition: all 0.2s;
}
.footer-social a:hover { color: var(--text-primary); border-color: var(--border); }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== HAMBURGER MENU ========== */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; cursor: pointer; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border);
  padding: 20px 24px;
  flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a, .nav-mobile-menu .mobile-section {
  display: block; padding: 12px 0;
  font-size: 1rem; font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.nav-mobile-menu .mobile-section {
  font-size: 0.72rem; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.1em; padding-top: 16px; border-bottom: none;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--text-primary); }
.nav-mobile-menu a.mobile-sub { padding-left: 14px; font-size: 0.92rem; }

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

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .hero-text { text-align: left; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .onprem-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .cta-actions { flex-direction: column; align-items: center; }

  .section { padding: 72px 0; }
  .onprem-section { padding: 72px 0; }
  .cta-section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .container-wide { padding: 0 16px; }
  .hero { padding: 90px 0 48px; }
  .hero h1 { font-size: 1.65rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 1.8rem; }
  .section-center h2 { font-size: 1.5rem; }
  .onprem-card { padding: 20px; }
  .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 0.9rem; width: 100%; justify-content: center; }
  .footer-brand-logo { font-size: 1.2rem; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--silver-2); border-radius: 0; }

/* ========== UNIFIED NODE DIAGRAM SYSTEM ========== */
.nd-canvas {
  position: relative;
  background: #f8f9fb;
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(0,0,0,.06);
}
.nd-canvas::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.nd-node {
  position: absolute;
  display: flex; flex-direction: column;
  background: white;
  border: 2px solid var(--border);
  border-left: 4px solid var(--node-color, #b08d3e);
  padding: 10px 14px;
  min-width: 108px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.06);
  z-index: 2;
  transition: box-shadow .2s, transform .2s;
}
.nd-node:hover { box-shadow: 5px 5px 0 rgba(0,0,0,.1); transform: translate(-1px,-1px); }
.nd-node-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-primary);
}
.nd-node-sub {
  font-size: .59rem; color: var(--text-muted);
  margin-top: 3px; line-height: 1.4;
}
.nd-node-status {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .54rem; font-weight: 600; margin-top: 6px;
  color: var(--node-color, #b08d3e);
}
.nd-node-status::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--node-color, #b08d3e);
  animation: pulse 2s ease infinite;
}
.nd-node.nd-main {
  border-left-width: 5px;
  padding: 14px 18px; min-width: 136px;
  background: #fafbfc;
}
.nd-node.nd-main .nd-node-label { font-size: .72rem; }
.nd-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.nd-line {
  stroke: var(--accent); stroke-width: 1.5;
  stroke-dasharray: 6 4; fill: none;
  opacity: .4;
}
.nd-arrow { fill: var(--accent); opacity: .4; }
.nd-node.nd-flow {
  flex-direction: row; align-items: center; gap: 8px;
  padding: 10px 16px; min-width: 0;
}

/* ========== PAGE HERO (single column for sub pages) ========== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  text-align: center;
}
.page-hero .container { max-width: 820px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.08;
  margin-bottom: 18px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.page-hero h1 .highlight {
  position: relative; display: inline-block;
}
.page-hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0; height: 8px;
  background: rgba(176,141,62,0.24);
  z-index: -1;
}
.page-hero p {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 600px; margin: 0 auto 28px; line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.page-hero .hero-actions { justify-content: center; animation: fadeInUp 0.8s ease 0.3s both; }

/* ========== PAGE BREADCRUMB ========== */
.breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}
.breadcrumb a { color: var(--accent); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb .sep { color: var(--text-muted); margin: 0 8px; }

/* ========== TWO COLUMN INFO ========== */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.two-col h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.two-col p {
  font-size: 1rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 14px;
}
.two-col .check-list {
  list-style: none; padding: 0; margin: 16px 0 0;
}
.two-col .check-list li {
  position: relative; padding: 6px 0 6px 26px;
  font-size: 0.9rem; color: var(--text-primary);
}
.two-col .check-list li::before {
  content: ''; position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 12px;
  background: var(--mc-green);
  image-rendering: pixelated;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== USE CASE LIST ========== */
.usecase-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 1000px; margin: 0 auto;
}
.usecase-card {
  padding: 24px; background: var(--bg-soft);
  border: 2px solid var(--border-light); border-radius: 0;
  transition: all 0.2s;
}
.usecase-card:hover {
  background: white; box-shadow: 4px 4px 0 rgba(0,0,0,0.06);
  border-color: var(--border); transform: translate(-2px,-2px);
}
.usecase-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.usecase-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
@media (max-width: 768px) { .usecase-grid { grid-template-columns: 1fr; } }

/* ========== INDUSTRY PAGE TEMPLATE ========== */
/* Each industry sub-page sets --c (primary color) and --c-glow on :root or body */
.ind-hero-anim {
  position: relative;
  width: 100%; max-width: 580px;
  height: 420px; margin: 0 auto;
  background: linear-gradient(145deg, #0f1117, #1a1d26);
  border: 2px solid var(--c, var(--accent));
  box-shadow: 8px 8px 0 rgba(0,0,0,0.18);
  overflow: hidden;
}
.ind-hero-anim::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--c-bg, rgba(176,141,62,0.06)) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-bg, rgba(176,141,62,0.06)) 1px, transparent 1px);
  background-size: 24px 24px;
}
.ind-toolbar {
  position: absolute; top: 0; left: 0; right: 0; height: 38px;
  background: rgba(15,17,23,0.95);
  border-bottom: 1px solid var(--c, var(--accent));
  display: flex; align-items: center; padding: 0 14px; gap: 8px; z-index: 30;
}
.ind-toolbar .d { width: 9px; height: 9px; image-rendering: pixelated; }
.ind-toolbar .d.r { background: #ef4444; }
.ind-toolbar .d.y { background: #f59e0b; }
.ind-toolbar .d.g { background: #22c55e; }
.ind-toolbar .t {
  margin-left: 10px; color: rgba(255,255,255,0.5);
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
}
.ind-toolbar .s {
  margin-left: auto; color: var(--c, var(--accent));
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; display: flex; align-items: center; gap: 6px;
}
.ind-toolbar .s::before {
  content:''; width:6px; height:6px; background: var(--c, var(--accent));
  animation: pulse 2s ease infinite;
}
.ind-tick {
  position: absolute; bottom: 0; left: 0; right: 0; height: 36px;
  background: rgba(15,17,23,0.96);
  border-top: 1px solid var(--c, var(--accent));
  display: flex; align-items: center; padding: 0 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 0.66rem;
  color: rgba(255,255,255,0.7);
  z-index: 30; overflow: hidden;
}
.ind-tick::before {
  content: '> '; color: var(--c, var(--accent));
  margin-right: 6px; font-weight: 700;
}
.ind-tick-text { white-space: nowrap; animation: tick 16s linear infinite; }
@keyframes tick {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Capability grid (industry-specific) */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cap {
  padding: 26px 24px; background: white;
  border: 2px solid var(--border-light);
  border-top: 4px solid var(--c, var(--accent));
  transition: all 0.25s;
}
.cap:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.06);
}
.cap .ctag {
  display: inline-block; padding: 3px 10px;
  background: var(--c, var(--accent)); color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.cap h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.cap p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.65; }
@media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cap-grid { grid-template-columns: 1fr; } }

/* Use case rows (industry-specific) */
.uc-list { max-width: 880px; margin: 0 auto; }
.uc {
  display: grid; grid-template-columns: 220px 1fr; gap: 32px;
  padding: 28px 0; border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.uc:last-child { border-bottom: none; }
.uc h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.uc .uc-tag {
  display: inline-block; padding: 3px 10px;
  background: var(--text-primary); color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.uc p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }
.uc .uc-stat {
  display: inline-block;
  margin-top: 12px; margin-right: 8px;
  padding: 4px 10px;
  background: var(--bg-soft);
  border-left: 3px solid var(--c, var(--accent));
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem; font-weight: 700;
}
@media (max-width: 768px) { .uc { grid-template-columns: 1fr; gap: 12px; } }

/* ========== SHARED UI MOCKUP CHROME ========== */
/* Reusable dark product window — used to recreate platform UI across pages */
.ui-mock {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 24px 60px -20px rgba(0,0,0,0.45);
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  color: #e3e6ee;
  position: relative;
}
.ui-mock-bar {
  height: 36px;
  background: rgba(13,17,23,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 8px;
  padding: 0 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
}
.ui-mock-bar .umd { width: 9px; height: 9px; border-radius: 50%; }
.ui-mock-bar .umd.r { background: rgba(239,68,68,0.55); }
.ui-mock-bar .umd.y { background: rgba(245,158,11,0.55); }
.ui-mock-bar .umd.g { background: rgba(92,138,55,0.7); }
.ui-mock-bar .umd-title { margin-left: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ui-mock-bar .umd-route { margin-left: auto; color: rgba(255,255,255,0.35); white-space: nowrap; }
@media (max-width: 600px) {
  .ui-mock-bar .umd-route { display: none; }
  .ui-mock-bar .umd-title { font-size: 0.62rem; }
}
