:root {
  --bg-dark: #090e17;
  --bg-darker: #050810;
  --bg-panel: #0f172a;
  --text-light: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  --blue: #2563eb;
  --orange: #f97316;
  --border-dark: #1e293b;
  --border-light: #e2e8f0;
  --cyan: #22d3ee;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text-dark);
  background: #f8fafc;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(37, 99, 235, 0); }
  50% { box-shadow: 0 0 24px rgba(37, 99, 235, 0.35); }
  100% { box-shadow: 0 0 0 rgba(37, 99, 235, 0); }
}

@keyframes techSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowBreath {
  0%, 100% {
    box-shadow: 0 0 0 rgba(59, 130, 246, 0);
  }
  50% {
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.32);
  }
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
  position: relative;
}

.dark {
  background: var(--bg-dark);
  color: white;
}

.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(30, 41, 59, 0.35) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 41, 59, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 60% at 50% 0%, #000 70%, transparent 100%);
  pointer-events: none;
}

.dark::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -180px;
  top: -240px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.24) 0%, rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(11, 17, 32, 0.9);
  border-bottom: 1px solid var(--border-dark);
}

.nav-wrap {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-block;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

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

.nav a {
  color: #cbd5e1;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
}

.nav a:hover,
.nav a.active {
  background: rgba(37, 99, 235, 0.16);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.35);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--border-dark);
  background: transparent;
  color: #cbd5e1;
  padding: 8px 10px;
  border-radius: 8px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border-dark);
  padding: 14px 0;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  color: #cbd5e1;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.mobile-menu a.active,
.mobile-menu a:hover {
  background: rgba(37, 99, 235, 0.16);
  color: #60a5fa;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.15;
}

.hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.7;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 16px;
  background: rgba(30, 58, 138, 0.2);
  backdrop-filter: blur(6px);
}

.title-gradient {
  background: linear-gradient(90deg, #60a5fa 0%, #22d3ee 55%, #fb923c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transition: transform 0.55s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.35);
}

.btn.primary:hover {
  background: #1d4ed8;
}

.btn.secondary {
  background: rgba(30, 41, 59, 0.85);
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
}

.btn.secondary:hover {
  background: rgba(30, 41, 59, 1);
}

.section-title {
  text-align: center;
  margin: 0 0 40px;
  font-size: clamp(26px, 4vw, 38px);
}

.section-subtitle {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
  color: #64748b;
  line-height: 1.7;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
  animation: floatUp 0.45s ease both;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.14);
}

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

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  line-height: 1.7;
  color: #475569;
}

.dark .card p {
  color: #94a3b8;
}

.card ul {
  margin: 14px 0 0;
  padding-left: 16px;
  color: #475569;
}

.tab-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(2, 6, 23, 0.5);
  background: rgba(15, 23, 42, 0.86);
}

.tab-list {
  background: #0b1120;
  padding: 12px;
  border-right: 1px solid var(--border-dark);
}

.tab-btn {
  width: 100%;
  text-align: left;
  margin-bottom: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #94a3b8;
  border-radius: 10px;
  padding: 12px;
  font-weight: 700;
}

.tab-btn.active {
  color: white;
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
}

.tab-panel {
  background: rgba(15, 23, 42, 0.85);
  color: white;
  padding: 28px;
  min-height: 320px;
}

.tab-panel p {
  color: var(--text-muted);
}

.tab-panel pre {
  margin: 18px 0 0;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(2, 6, 23, 0.8);
  color: #93c5fd;
  font-size: 12px;
  overflow: auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 10px;
  background: white;
}

.faq-item:hover {
  border-color: #93c5fd;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 16px;
  font-weight: 700;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 0 16px 16px;
  color: #475569;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
}

.form {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 6px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
  outline: none;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.mt-12 {
  margin-top: 12px;
}

.success {
  display: none;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.success.show {
  display: block;
}

.footer {
  background: var(--bg-darker);
  color: var(--text-light);
  border-top: 1px solid var(--border-dark);
  padding: 40px 0 20px;
  position: relative;
}

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

.footer small {
  display: block;
  margin-top: 20px;
  color: #64748b;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.status-row {
  margin-top: 28px;
  border-top: 1px solid rgba(51, 65, 85, 0.8);
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.status-item {
  color: #cbd5e1;
}

.status-item span {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 6px;
}

.status-item strong {
  color: #e2e8f0;
  font-size: 15px;
}

.terminal-panel {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 0 45px rgba(37, 99, 235, 0.2);
}

.terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(51, 65, 85, 0.7);
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #475569;
  display: inline-block;
}

.terminal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.terminal-card {
  border: 1px solid rgba(51, 65, 85, 0.85);
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.48);
  padding: 12px;
}

.terminal-card p {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
}

.terminal-card strong {
  display: block;
  margin-top: 6px;
  color: #e2e8f0;
}

.terminal-log {
  margin-top: 10px;
  border: 1px solid rgba(51, 65, 85, 0.85);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.7);
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.6;
}

.solution-card-meta {
  display: inline-flex;
  font-size: 11px;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  padding: 4px 10px;
}

.media-top {
  position: relative;
  height: 160px;
  margin: -22px -22px 14px;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.media-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .media-top img {
  transform: scale(1.08);
}

.media-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent 50%);
}

.media-chip {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #e2e8f0;
  font-size: 11px;
  padding: 4px 9px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 14px 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.step {
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}

.step b {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #2563eb;
  margin-bottom: 8px;
}

.cta-band {
  background: #0b1120;
  color: white;
  border-top: 3px solid var(--blue);
}

.cta-band p {
  color: #94a3b8;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tab-layout {
    grid-template-columns: 1fr;
  }
  .tab-list {
    border-right: 0;
    border-bottom: 1px solid var(--border-dark);
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .terminal-panel {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .mobile-toggle {
    display: inline-block;
  }
  .grid-2,
  .grid-3,
  .contact-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .status-row {
    grid-template-columns: 1fr;
  }
  .grid-4,
  .split,
  .timeline {
    grid-template-columns: 1fr;
  }
}

/* ---- Home rebuild per requested layout ---- */
.home-light {
  background: #f4f7fb;
}

.hero-white {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: #0f172a;
  border-bottom: 1px solid #e6efff;
  overflow: hidden;
}

.hero-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(147, 197, 253, 0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(147, 197, 253, 0.16) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 35%, #000 65%, transparent 100%);
}

.hero-white::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -140px;
  top: -180px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-white .hero-grid {
  align-items: center;
}

.hero-white h1,
.hero-white .section-title {
  color: #0f172a;
}

.hero-white p {
  color: #64748b;
}

.hero-quick-links {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-quick-links a {
  border: 1px solid #dbe7ff;
  background: #f7faff;
  color: #1e3a8a;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.hero-quick-links a::after {
  content: "→";
  color: #f59e0b;
}

.hero-visual {
  position: relative;
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dbe7ff;
  box-shadow: 0 16px 36px rgba(30, 64, 175, 0.12);
  background: #dbeafe;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  pointer-events: none;
  z-index: 2;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #dbe7ff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 10px 20px rgba(30, 64, 175, 0.15);
  font-size: 12px;
  color: #334155;
  backdrop-filter: blur(10px);
  animation: softFloat 3s ease-in-out infinite;
}

.float-card strong {
  display: block;
  color: #1d4ed8;
  font-size: 15px;
  margin-top: 3px;
}

.float-card.fc1 { top: 14px; left: 14px; }
.float-card.fc2 { top: 74px; right: 14px; }
.float-card.fc3 { bottom: 14px; left: 24px; }

.model-square {
  background: #f4f7fb;
}

.square-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 auto 16px;
  justify-content: center;
}

.square-tags span {
  border: 1px solid #dbe7ff;
  background: #fff;
  color: #475569;
  border-radius: 999px;
  font-size: 12px;
  padding: 5px 11px;
}

.square-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.square-card {
  background: #fff;
  border: 1px solid #e6efff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

.square-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.6), transparent 80%);
  transform: translateX(-120%);
  opacity: 0;
}

.square-card:hover::after {
  opacity: 0.7;
  animation: techSweep 1s ease;
}

.square-card h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 17px;
}

.square-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.square-card.wide {
  grid-column: span 6;
  border-top: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #60a5fa, #f59e0b) border-box;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
}

.square-card.small { grid-column: span 3; }

.capability-panel {
  border: 1px solid #dbe7ff;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  position: relative;
}

.capability-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 16px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.35), rgba(245, 158, 11, 0.3)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.capability-panel .tab-list {
  background: #f7faff;
  border-right-color: #e7eefc;
}

.capability-panel .tab-btn {
  color: #475569;
}

.capability-panel .tab-btn.active {
  color: #1d4ed8;
  background: #edf3ff;
  border-color: #dbe7ff;
}

.capability-panel .tab-panel {
  background: #fff;
  color: #0f172a;
}

.capability-panel .tab-panel p {
  color: #64748b;
}

.capability-panel .tab-panel pre {
  background: #f7faff;
  border-color: #e6efff;
  color: #334155;
}

.feature-band {
  background: linear-gradient(180deg, #eef3fb 0%, #e9effb 100%);
  border-top: 1px solid #dbe7ff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-item {
  background: #fff;
  border: 1px solid #dbe7ff;
  border-radius: 12px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -50px;
  top: -50px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.14), transparent 70%);
}

.feature-item h4 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 15px;
}

.feature-item p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
}

.logo-band {
  margin-top: 18px;
  border: 1px solid #dbe7ff;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.logo-item {
  border: 1px dashed #dbe7ff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  color: #94a3b8;
  filter: grayscale(100%);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

.logo-item:hover {
  color: #64748b;
  border-color: #93c5fd;
  background: #f8fbff;
}

.cta-blue {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-blue::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -150px;
  top: -220px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.34), transparent 70%);
  pointer-events: none;
}

/* ---- Full-site playful glass texture mode ---- */
html,
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(59, 130, 246, 0.18), transparent 35%),
    radial-gradient(circle at 88% 18%, rgba(245, 158, 11, 0.14), transparent 32%),
    linear-gradient(180deg, #090f1c 0%, #0d1629 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 0),
    radial-gradient(circle at 6px 6px, rgba(147, 197, 253, 0.5) 1px, transparent 0);
  background-size: 18px 18px, 28px 28px;
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

.header {
  background: rgba(9, 15, 28, 0.58);
  backdrop-filter: blur(14px) saturate(130%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.logo {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.35), rgba(30, 64, 175, 0.2));
  border-color: rgba(147, 197, 253, 0.35);
  color: #dbeafe;
}

.nav a {
  border: 1px solid transparent;
}

.nav a:hover,
.nav a.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(245, 158, 11, 0.15));
  border-color: rgba(147, 197, 253, 0.35);
  color: #e0ecff;
}

.section {
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%, rgba(255, 255, 255, 0.02));
  opacity: 0.45;
}

.card,
.square-card,
.feature-item,
.form,
.faq-item,
.step,
.terminal-panel,
.capability-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow:
    0 8px 30px rgba(2, 6, 23, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card::after,
.square-card::before,
.feature-item::after,
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.22) 45%, transparent 80%);
}

.card,
.square-card,
.feature-item,
.faq-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.square-card:hover,
.feature-item:hover,
.faq-item:hover {
  transform: translateY(-4px) rotate(-0.2deg);
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow:
    0 16px 34px rgba(30, 64, 175, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-white,
.model-square,
.feature-band {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.42), rgba(15, 23, 42, 0.3));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  margin: 14px 14px 0;
}

.hero-white h1,
.hero-white p,
.section-title,
.section-subtitle,
.square-card h3,
.square-card p,
.feature-item h4,
.feature-item p,
.faq-q,
.faq-a,
.step h3,
.step p,
label,
.form h3 {
  color: #d9e6fb;
}

.badge,
.solution-card-meta,
.media-chip,
.pill {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(245, 158, 11, 0.18));
  border: 1px solid rgba(147, 197, 253, 0.35);
  color: #e5efff;
}

.btn {
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.btn.primary {
  background: linear-gradient(100deg, rgba(37, 99, 235, 0.95), rgba(59, 130, 246, 0.84));
}

.btn.secondary {
  background: linear-gradient(100deg, rgba(30, 41, 59, 0.8), rgba(245, 158, 11, 0.2));
  color: #fde68a;
}

.tab-layout,
.capability-panel .tab-panel,
.capability-panel .tab-list,
.terminal-card,
.terminal-log {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(148, 163, 184, 0.22);
  color: #dbeafe;
}

.tab-btn.active {
  background: linear-gradient(100deg, rgba(37, 99, 235, 0.28), rgba(245, 158, 11, 0.2));
  color: #ffffff;
}

input,
textarea,
select {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(148, 163, 184, 0.25);
  color: #e5efff;
}

.logo-band {
  background: rgba(15, 23, 42, 0.35);
  border-color: rgba(148, 163, 184, 0.24);
}

.logo-item {
  border-color: rgba(148, 163, 184, 0.25);
  color: #9fb3d9;
}

.footer {
  background: linear-gradient(180deg, rgba(10, 17, 32, 0.8), rgba(15, 23, 42, 0.75));
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(245, 158, 11, 0.28);
}

.cta-blue .section-subtitle,
.cta-blue p {
  color: rgba(255, 255, 255, 0.88);
}

/* Consistency helpers across all pages */
.site-main {
  background: transparent;
}

.section-muted {
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.08), rgba(148, 163, 184, 0.04));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  margin: 12px;
}

.card.glass-dark {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.44));
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.card.glass-dark p,
.card.glass-dark ul,
.card.glass-dark h3 {
  color: #dbeafe;
}

.section-compact .section-title {
  margin-bottom: 12px;
}

.section-compact .section-subtitle {
  margin-bottom: 22px;
}

@media (max-width: 1024px) {
  .square-card.wide,
  .square-card.small {
    grid-column: span 6;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .logo-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-quick-links,
  .logo-band,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .square-card.wide,
  .square-card.small {
    grid-column: span 12;
  }
}

/* Solutions page layout close to provided reference */
.solutions-showcase {
  background: #eef1f6;
}

.solutions-showcase .section-title {
  color: #ffffff !important;
  margin-bottom: 34px;
}

.solutions-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-detail-card {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 58%);
  background: rgba(15, 23, 42, 0.56);
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}

.solution-detail-card.reverse {
  grid-template-columns: minmax(0, 58%) minmax(320px, 42%);
}

.solution-detail-card.reverse .solution-detail-left {
  order: 2;
}

.solution-detail-card.reverse .solution-detail-right {
  order: 1;
}

.solution-detail-left {
  position: relative;
  min-height: 320px;
}

.solution-detail-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-detail-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.28);
  color: #dbeafe;
}

.solution-detail-overlay span {
  display: block;
  font-size: 10px;
  color: #93c5fd;
}

.solution-detail-overlay strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  color: #fff;
}

.solution-detail-right {
  padding: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.66), rgba(15, 23, 42, 0.52));
  border-left: 1px solid rgba(148, 163, 184, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.solution-detail-right h3 {
  margin: 0 0 10px;
  color: #f8fbff !important;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.solution-desc {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-left: 2px solid #60a5fa;
  background: rgba(30, 41, 59, 0.66);
  color: #c6d7f7 !important;
}

.solution-detail-right h4 {
  margin: 0 0 10px;
  color: #93c5fd !important;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.solution-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.solution-benefit {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.58);
  color: #dbeafe;
  font-size: 13px;
  padding: 10px 12px;
}

.solution-benefit::before {
  content: "•";
  color: #3b82f6;
  margin-right: 8px;
}

@media (max-width: 1024px) {
  .solution-detail-card,
  .solution-detail-card.reverse {
    grid-template-columns: 1fr;
  }
  .solution-detail-card.reverse .solution-detail-left,
  .solution-detail-card.reverse .solution-detail-right {
    order: initial;
  }
  .solution-detail-right h3 {
    font-size: 32px;
  }
  .solution-detail-right {
    border-left: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
  }
}

@media (max-width: 768px) {
  .solution-benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* Solutions page dark mode */
.solutions-dark .site-main {
  background:
    radial-gradient(circle at 12% 8%, rgba(59, 130, 246, 0.2), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(245, 158, 11, 0.12), transparent 32%),
    linear-gradient(180deg, #070d1a 0%, #0b1426 100%);
}

.solutions-dark .solutions-showcase {
  background: transparent;
}

.solutions-dark .solutions-showcase .section-title {
  color: #e2ebfb !important;
}

.solutions-dark .solution-detail-card {
  background: rgba(15, 23, 42, 0.56);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.solutions-dark .solution-detail-right h3 {
  color: #f8fbff !important;
}

.solutions-dark .solution-desc {
  background: rgba(30, 41, 59, 0.6);
  border-left-color: #60a5fa;
  color: #bcd0f3 !important;
}

.solutions-dark .solution-detail-right h4 {
  color: #94a3b8 !important;
}

.solutions-dark .solution-benefit {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(148, 163, 184, 0.24);
  color: #dbeafe;
}

.solutions-dark .section-muted {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.34));
  border-color: rgba(148, 163, 184, 0.16);
}

.solutions-dark .step {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(148, 163, 184, 0.22);
}

.solutions-dark .step h3,
.solutions-dark .step p {
  color: #dbeafe !important;
}

.solutions-dark #faqRoot .faq-item {
  background: rgba(15, 23, 42, 0.58);
  border-color: rgba(148, 163, 184, 0.24);
}

.solutions-dark #faqRoot .faq-q {
  color: #e2ebfb;
}

.solutions-dark #faqRoot .faq-a {
  color: #bcd0f3;
}

/* ===== Unified Design System (final) ===== */
:root {
  --u-bg: #070d1a;
  --u-bg-2: #0b1430;
  --u-surface: rgba(15, 23, 42, 0.5);
  --u-surface-2: rgba(15, 23, 42, 0.38);
  --u-border: rgba(148, 163, 184, 0.24);
  --u-text: #e2ebfb;
  --u-text-muted: #a5b6d6;
  --u-blue: #3b82f6;
  --u-indigo: #6366f1;
  --u-orange: #f59e0b;
  --u-amber: #fbbf24;
}

html,
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(59, 130, 246, 0.26), transparent 36%),
    radial-gradient(circle at 36% 14%, rgba(99, 102, 241, 0.2), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(251, 191, 36, 0.2), transparent 30%),
    linear-gradient(180deg, #060b17 0%, #0b1430 100%);
  color: var(--u-text);
}

.site-main,
.home-light {
  background: transparent;
}

.header {
  background: rgba(9, 15, 28, 0.62);
  border-bottom: 1px solid var(--u-border);
  backdrop-filter: blur(14px) saturate(130%);
}

.logo {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.35), rgba(30, 64, 175, 0.2));
  border: 1px solid rgba(147, 197, 253, 0.35);
  color: #dbeafe;
}

.nav a,
.mobile-menu a {
  color: #d9e6fb;
}

.nav a:hover,
.nav a.active,
.mobile-menu a:hover,
.mobile-menu a.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(245, 158, 11, 0.15));
  border-color: rgba(147, 197, 253, 0.35);
  color: #fff;
}

.page-hero,
.hero-white,
.dark.hero {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.52), rgba(15, 23, 42, 0.38));
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  margin: 14px 14px 0;
  overflow: hidden;
}

.page-panel,
.section-muted,
.model-square,
.feature-band {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.42), rgba(15, 23, 42, 0.3));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  margin: 12px 12px 0;
}

.page-cta,
.cta-blue,
.cta-band {
  background: linear-gradient(95deg, rgba(37, 99, 235, 0.9), rgba(99, 102, 241, 0.85));
  border-radius: 18px;
  margin: 12px;
  border: 1px solid rgba(191, 219, 254, 0.4);
}

.section-title,
.hero h1,
.hero-white h1,
.square-card h3,
.feature-item h4,
.faq-q,
.form h3,
label {
  color: var(--u-text) !important;
}

.section-subtitle,
.hero p,
.hero-white p,
.square-card p,
.feature-item p,
.faq-a,
.card p,
.card ul,
.step p {
  color: var(--u-text-muted) !important;
}

.badge,
.solution-card-meta,
.media-chip,
.pill {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.26), rgba(99, 102, 241, 0.18), rgba(245, 158, 11, 0.2));
  border: 1px solid rgba(147, 197, 253, 0.4);
  color: #e5efff;
}

.card,
.square-card,
.feature-item,
.form,
.faq-item,
.step,
.terminal-panel,
.capability-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--u-border);
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card:hover,
.square-card:hover,
.feature-item:hover,
.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.52);
  box-shadow: 0 18px 34px rgba(30, 64, 175, 0.32), 0 0 0 1px rgba(251, 191, 36, 0.18);
}

.tab-layout,
.tab-list,
.tab-panel,
.terminal-card,
.terminal-log {
  background: rgba(15, 23, 42, 0.45);
  border-color: var(--u-border);
  color: var(--u-text);
}

.tab-btn {
  color: var(--u-text-muted);
}

.tab-btn.active {
  color: #fff;
  background: linear-gradient(100deg, rgba(37, 99, 235, 0.3), rgba(99, 102, 241, 0.24), rgba(245, 158, 11, 0.2));
  border-color: rgba(251, 191, 36, 0.4);
}

.btn.primary {
  background: linear-gradient(90deg, #2563eb, #3b82f6, #6366f1);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.36), 0 0 0 1px rgba(191, 219, 254, 0.24);
}

.btn.secondary {
  background: linear-gradient(100deg, rgba(30, 41, 59, 0.82), rgba(245, 158, 11, 0.24));
  color: #fcd34d;
  border-color: rgba(251, 191, 36, 0.4);
}

input,
textarea,
select {
  background: rgba(15, 23, 42, 0.45);
  border-color: var(--u-border);
  color: #e5efff;
}

.footer {
  background: linear-gradient(180deg, rgba(10, 17, 32, 0.8), rgba(15, 23, 42, 0.75));
  border-top: 1px solid rgba(251, 191, 36, 0.34);
  color: #d4e0f8;
}

/* ===== Playful Glassmorphism Theme ===== */
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.62; }
  50% { transform: scale(1.12); opacity: 0.92; }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-16px) translateX(8px); }
}

@keyframes holoBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes capsuleDrift {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(12px) rotate(4deg); }
}

html,
body {
  background:
    radial-gradient(circle at 14% 8%, rgba(59, 130, 246, 0.32), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(245, 158, 11, 0.26), transparent 30%),
    radial-gradient(circle at 50% 85%, rgba(168, 85, 247, 0.24), transparent 36%),
    linear-gradient(180deg, #070d1a 0%, #0b1426 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(56, 189, 248, 0.18), transparent 22%),
    radial-gradient(circle at 76% 22%, rgba(251, 146, 60, 0.18), transparent 24%),
    radial-gradient(circle at 58% 74%, rgba(217, 70, 239, 0.18), transparent 26%);
  filter: blur(20px);
  animation: orbPulse 7s ease-in-out infinite;
}

.header,
.card,
.square-card,
.feature-item,
.faq-item,
.form,
.terminal-panel,
.capability-panel,
.tab-layout,
.tab-list,
.tab-panel,
.terminal-card,
.terminal-log,
.footer {
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.header {
  background: rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.35);
}

.logo,
.nav .nav-cta {
  border-radius: 1.25rem;
}

.nav a,
.mobile-menu a {
  border-radius: 999px;
}

.card,
.square-card,
.feature-item,
.faq-item,
.form,
.step,
.terminal-panel,
.capability-panel {
  border-radius: 2rem !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 12px 32px rgba(2, 6, 23, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.card::before,
.square-card::before,
.feature-item::before {
  border-radius: inherit;
}

.card:hover,
.square-card:hover,
.feature-item:hover,
.faq-item:hover {
  transform: translateY(-8px) scale(1.015);
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

.btn {
  border-radius: 999px;
}

.btn.primary {
  box-shadow: 0 0 0 1px rgba(191, 219, 254, 0.32), 0 12px 26px rgba(37, 99, 235, 0.36);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fde68a !important;
}

.hero-tech {
  position: relative;
  overflow: hidden;
}

.hero-tech::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  top: -170px;
  right: -120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.36), transparent 68%);
  filter: blur(12px);
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-tech::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  bottom: -260px;
  left: -140px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.28), transparent 68%);
  filter: blur(14px);
  animation: orbPulse 8s ease-in-out infinite;
}

.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-capsule {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 8px 22px rgba(2, 6, 23, 0.3);
  animation: capsuleDrift 6s ease-in-out infinite;
}

.hero-capsule.c1 {
  top: 20%;
  left: 48%;
  width: 72px;
  height: 28px;
}

.hero-capsule.c2 {
  top: 60%;
  left: 6%;
  width: 86px;
  height: 30px;
  animation-delay: 1.2s;
}

.hero-sphere {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(59, 130, 246, 0.6));
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.8);
  animation: holoBob 2.2s ease-in-out infinite;
}

.hero-sphere.s1 {
  top: 26%;
  right: 40%;
}

.hero-sphere.s2 {
  top: 68%;
  right: 8%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(251, 191, 36, 0.64));
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.62);
  animation-delay: 0.9s;
}

/* ===== Design Evolution: cleaner, premium, less noisy ===== */
:root {
  --evo-bg-1: #070d1a;
  --evo-bg-2: #0b1428;
  --evo-surface: rgba(12, 21, 38, 0.58);
  --evo-surface-soft: rgba(15, 23, 42, 0.42);
  --evo-border: rgba(148, 163, 184, 0.2);
  --evo-text: #eaf0ff;
  --evo-text-muted: #aebdd8;
  --evo-blue: #3b82f6;
  --evo-orange: #f59e0b;
}

html,
body {
  background:
    radial-gradient(circle at 12% 6%, rgba(59, 130, 246, 0.18), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(245, 158, 11, 0.12), transparent 30%),
    linear-gradient(180deg, var(--evo-bg-1) 0%, var(--evo-bg-2) 100%);
}

/* Reduce visual noise from overused overlays */
.section::after,
.page-panel::after,
.section-muted::after,
.model-square::after,
.feature-band::after,
.solutions-showcase::after,
.industries-showcase::after,
.card::after,
.square-card::after,
.feature-item::after,
.faq-item::after {
  opacity: 0 !important;
  animation: none !important;
}

.site-main .container {
  width: min(1180px, 90%);
}

.section {
  padding: 88px 0;
}

.header {
  background: rgba(10, 17, 32, 0.74) !important;
  border-bottom: 1px solid var(--evo-border) !important;
  backdrop-filter: blur(14px) saturate(120%);
}

.logo {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(148, 163, 184, 0.28) !important;
  color: #dbeafe !important;
}

.nav a {
  color: #c9d6ef !important;
  font-weight: 600;
}

.nav a.active,
.nav a:hover {
  color: #ffffff !important;
  background: rgba(59, 130, 246, 0.2) !important;
  border-color: rgba(96, 165, 250, 0.36) !important;
}

.nav .nav-cta {
  background: linear-gradient(90deg, #2563eb, #3b82f6) !important;
  border-color: transparent !important;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.32) !important;
}

.page-hero,
.hero-tech.page-hero {
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.24) !important;
  background: linear-gradient(180deg, rgba(7, 13, 26, 0.9), rgba(9, 16, 31, 0.84)) !important;
}

.section-title,
.hero h1 {
  color: var(--evo-text) !important;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.section-subtitle,
.hero p,
.card p,
.square-card p,
.feature-item p,
.faq-a,
.industry-block p,
.solution-desc {
  color: var(--evo-text-muted) !important;
  line-height: 1.78 !important;
}

.section-subtitle {
  max-width: 760px;
  margin-bottom: 24px;
}

.badge,
.solution-card-meta,
.media-chip,
.pill {
  border-color: rgba(96, 165, 250, 0.36) !important;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(245, 158, 11, 0.14)) !important;
  color: #eaf1ff !important;
}

.card,
.square-card,
.feature-item,
.faq-item,
.form,
.step,
.terminal-panel,
.capability-panel,
.solution-detail-card,
.industry-card,
.about-dark-card,
.about-cap-item,
.about-coop-item {
  background: linear-gradient(180deg, var(--evo-surface), var(--evo-surface-soft)) !important;
  border: 1px solid var(--evo-border) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.3) !important;
  backdrop-filter: blur(10px) saturate(120%);
}

.card:hover,
.square-card:hover,
.feature-item:hover,
.faq-item:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(245, 158, 11, 0.42) !important;
  box-shadow: 0 16px 30px rgba(30, 64, 175, 0.24) !important;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  min-height: 42px;
  padding: 10px 18px;
}

.btn.primary {
  background: linear-gradient(90deg, #2563eb, #3b82f6) !important;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.32) !important;
  animation: none !important;
}

.btn.secondary {
  background: rgba(30, 41, 59, 0.76) !important;
  border-color: rgba(245, 158, 11, 0.36) !important;
  color: #fdd08b !important;
}

.tab-layout,
.tab-list,
.tab-panel,
.terminal-card,
.terminal-log,
input,
textarea,
select {
  background: rgba(15, 23, 42, 0.5) !important;
  border-color: var(--evo-border) !important;
  color: #dee8ff !important;
}

.tab-btn.active {
  background: linear-gradient(100deg, rgba(37, 99, 235, 0.26), rgba(245, 158, 11, 0.18)) !important;
  border-color: rgba(245, 158, 11, 0.38) !important;
}

.footer {
  background: linear-gradient(180deg, rgba(8, 14, 26, 0.9), rgba(10, 17, 32, 0.84)) !important;
  border-top: 1px solid rgba(245, 158, 11, 0.26) !important;
}

/* Tame decorative floating to avoid visual clutter */
.hero-floaters,
.hero-capsule,
.hero-sphere {
  opacity: 0.55;
}

/* ===== Luxury Minimal mode ===== */
:root {
  --lm-bg-top: #070c18;
  --lm-bg-bottom: #0b1220;
  --lm-surface: rgba(13, 21, 35, 0.64);
  --lm-surface-soft: rgba(16, 25, 40, 0.48);
  --lm-border: rgba(148, 163, 184, 0.18);
  --lm-text: #e8eefc;
  --lm-muted: #a9b8d2;
}

html,
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(59, 130, 246, 0.12), transparent 36%),
    radial-gradient(circle at 88% 16%, rgba(245, 158, 11, 0.08), transparent 34%),
    linear-gradient(180deg, var(--lm-bg-top) 0%, var(--lm-bg-bottom) 100%);
}

/* very subtle texture only */
body::before {
  opacity: 0.06 !important;
}

.hero-floaters,
.hero-capsule,
.hero-sphere,
.hero-tech::before,
.hero-tech::after {
  display: none !important;
}

.section {
  padding: 102px 0;
}

.site-main .container {
  width: min(1120px, 88%);
}

.header {
  background: rgba(9, 14, 24, 0.78) !important;
  border-bottom: 1px solid var(--lm-border) !important;
  box-shadow: 0 4px 18px rgba(2, 8, 22, 0.25) !important;
}

.logo {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #dbe8ff !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  mix-blend-mode: normal;
  opacity: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
}

.nav a {
  color: #c8d5ed !important;
  font-weight: 500 !important;
}

.nav a.active,
.nav a:hover {
  background: rgba(59, 130, 246, 0.14) !important;
  border-color: rgba(96, 165, 250, 0.26) !important;
}

.nav .nav-cta {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.95), rgba(59, 130, 246, 0.88)) !important;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.24) !important;
}

.page-hero,
.hero-tech.page-hero,
.page-panel,
.section-muted,
.model-square,
.feature-band,
.solutions-showcase,
.industries-showcase,
.page-cta,
.cta-blue,
.cta-band {
  border-radius: 14px !important;
  margin: 10px !important;
}

.page-hero,
.hero-tech.page-hero {
  background: linear-gradient(180deg, rgba(9, 14, 24, 0.92), rgba(12, 20, 34, 0.86)) !important;
  border: 1px solid var(--lm-border) !important;
}

.page-panel,
.section-muted,
.model-square,
.feature-band,
.solutions-showcase,
.industries-showcase {
  background: linear-gradient(180deg, var(--lm-surface), var(--lm-surface-soft)) !important;
  border: 1px solid var(--lm-border) !important;
}

.section-title,
.hero h1,
.hero-tech h1 {
  color: var(--lm-text) !important;
  font-size: clamp(28px, 3.8vw, 46px) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.012em !important;
  font-weight: 700 !important;
}

.section-subtitle,
.hero p,
.hero-tech p,
.card p,
.square-card p,
.feature-item p,
.faq-a,
.solution-desc,
.industry-block p {
  color: var(--lm-muted) !important;
  line-height: 1.8 !important;
}

.badge {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(96, 165, 250, 0.25) !important;
  color: #cfe0ff !important;
  letter-spacing: 0.06em !important;
}

.card,
.square-card,
.feature-item,
.faq-item,
.form,
.step,
.terminal-panel,
.capability-panel,
.solution-detail-card,
.industry-card,
.about-dark-card,
.about-cap-item,
.about-coop-item {
  background: linear-gradient(180deg, rgba(15, 23, 38, 0.62), rgba(17, 26, 42, 0.52)) !important;
  border: 1px solid var(--lm-border) !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 18px rgba(2, 8, 20, 0.2) !important;
  backdrop-filter: blur(8px) saturate(110%) !important;
}

.card:hover,
.square-card:hover,
.feature-item:hover,
.faq-item:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(251, 191, 36, 0.28) !important;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.22) !important;
}

.btn {
  border-radius: 999px !important;
  min-height: 40px !important;
  padding: 9px 16px !important;
  font-size: 13px !important;
}

.btn.primary {
  animation: none !important;
  background: linear-gradient(90deg, #2563eb, #3b82f6) !important;
}

.btn.secondary {
  background: rgba(30, 41, 59, 0.7) !important;
  border-color: rgba(245, 158, 11, 0.28) !important;
  color: #fcd18a !important;
}

.tab-layout,
.tab-list,
.tab-panel,
.terminal-card,
.terminal-log,
input,
textarea,
select {
  background: rgba(15, 23, 38, 0.56) !important;
  border-color: var(--lm-border) !important;
}

.tab-btn.active {
  background: rgba(37, 99, 235, 0.2) !important;
  border-color: rgba(96, 165, 250, 0.3) !important;
}

.footer {
  background: linear-gradient(180deg, rgba(8, 13, 22, 0.9), rgba(11, 18, 30, 0.88)) !important;
  border-top: 1px solid rgba(148, 163, 184, 0.18) !important;
}

.footer-brand {
  margin: 0 0 10px !important;
}

.footer-brand img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  mix-blend-mode: normal;
  opacity: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

/* keep only one premium accent line */
.card::before,
.square-card.wide {
  opacity: 0.55 !important;
}

/* ===== Aesthetic polish layer ===== */
:root {
  --aes-radius-xl: 24px;
  --aes-radius-lg: 18px;
  --aes-shadow-soft: 0 14px 40px rgba(2, 8, 24, 0.34);
  --aes-shadow-card: 0 10px 26px rgba(6, 12, 28, 0.26);
}

body {
  letter-spacing: 0.003em;
}

.container {
  width: min(1240px, 91%);
}

.section {
  padding: 96px 0;
}

.section-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.85;
  max-width: 860px;
}

.page-hero,
.hero-tech.page-hero {
  border-radius: var(--aes-radius-xl);
  box-shadow: var(--aes-shadow-soft);
}

.page-panel,
.section-muted,
.model-square,
.feature-band,
.solutions-showcase,
.industries-showcase {
  border-radius: var(--aes-radius-xl);
  box-shadow: var(--aes-shadow-card);
}

.badge {
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.btn {
  min-height: 44px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
}

.btn.primary {
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.34);
  animation: glowBreath 3.6s ease-in-out infinite;
}

.card,
.square-card,
.feature-item,
.faq-item,
.form,
.step,
.terminal-panel,
.capability-panel,
.solution-detail-card,
.industry-card,
.about-dark-card,
.about-cap-item,
.about-coop-item {
  border-radius: var(--aes-radius-lg) !important;
  box-shadow: var(--aes-shadow-card);
  animation: fadeUpIn 0.55s ease both;
}

.card h3,
.square-card h3,
.solution-detail-right h3,
.industry-overlay h3 {
  letter-spacing: -0.01em;
}

.section {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-init {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.stagger-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Extra visual intensity layer ===== */
@keyframes shineMove {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.page-hero,
.hero-tech.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 20%, #000 70%, transparent 100%);
}

.page-panel,
.section-muted,
.model-square,
.feature-band,
.solutions-showcase,
.industries-showcase {
  position: relative;
  overflow: hidden;
}

.page-panel::after,
.section-muted::after,
.model-square::after,
.feature-band::after,
.solutions-showcase::after,
.industries-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08) 50%, transparent 80%);
  transform: translateX(-120%);
  opacity: 0;
}

.page-panel:hover::after,
.section-muted:hover::after,
.model-square:hover::after,
.feature-band:hover::after,
.solutions-showcase:hover::after,
.industries-showcase:hover::after {
  opacity: 1;
  animation: shineMove 1.15s ease;
}

.card::after,
.square-card::after,
.feature-item::after,
.faq-item::after,
.about-cap-item::after,
.about-coop-item::after,
.solution-detail-card::after,
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn.primary {
  position: relative;
  overflow: hidden;
}

.btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
}

.btn.primary:hover::before {
  animation: shineMove 0.9s ease;
}

.solution-detail-left img,
.industry-left img,
.hero-visual img {
  filter: saturate(112%) contrast(103%);
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -180px;
  top: -260px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.24), transparent 72%);
  pointer-events: none;
}

.card p,
.square-card p,
.solution-desc,
.industry-block p,
.about-cap-item p,
.about-coop-item p {
  line-height: 1.8 !important;
}

.tab-layout,
.capability-panel {
  border-radius: var(--aes-radius-xl);
}

.tab-panel pre {
  border-radius: 14px;
  line-height: 1.6;
}

.footer {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

@media (max-width: 1024px) {
  .section {
    padding: 76px 0;
  }
  .section-title {
    font-size: clamp(28px, 5vw, 40px);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 62px 0;
  }
  .section-subtitle {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ===== Final Alignment Overrides ===== */
.site-main > .section {
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-main .container {
  width: min(1220px, 92%);
}

.page-hero,
.hero-tech.page-hero {
  background: linear-gradient(180deg, rgba(7, 13, 26, 0.9), rgba(8, 15, 30, 0.82));
  border: 1px solid rgba(59, 130, 246, 0.24);
  border-radius: 20px;
  margin: 14px 12px 0;
}

.page-hero h1,
.hero-tech h1 {
  margin-bottom: 10px;
}

.page-hero p,
.hero-tech p {
  max-width: 860px;
}

.page-panel,
.section-muted,
.model-square,
.feature-band,
.solutions-showcase,
.industries-showcase {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.42), rgba(15, 23, 42, 0.3));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  margin: 12px;
}

.section-title {
  margin-bottom: 30px;
}

.section-subtitle {
  margin-bottom: 28px;
}

.footer {
  background: linear-gradient(180deg, rgba(10, 17, 32, 0.82), rgba(15, 23, 42, 0.78));
  border-top: 1px solid rgba(245, 158, 11, 0.28);
  color: #d4e0f8;
}

/* Header visual closer to reference */
.header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(203, 213, 225, 0.8);
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 4px 22px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
  height: 64px;
}

.logo {
  background: #ffffff;
  border: 1px solid #dbe7ff;
  color: #1e3a8a;
  border-radius: 10px;
  font-weight: 800;
}

.nav {
  gap: 8px;
}

.nav a {
  color: #334155;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 12px;
}

.nav a:hover,
.nav a.active {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #dbeafe;
}

.nav .nav-cta {
  margin-left: 6px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: #ffffff !important;
  border: 1px solid #2563eb;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.24);
  padding: 8px 14px;
}

.nav .nav-cta:hover {
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
  color: #ffffff !important;
}

.mobile-toggle {
  border-color: #cbd5e1;
  color: #334155;
}

.mobile-menu {
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #e2e8f0;
}

.mobile-menu a {
  color: #334155;
}

.mobile-menu a.active,
.mobile-menu a:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

/* Hero style matching provided reference */
.hero-tech {
  background:
    linear-gradient(180deg, rgba(8, 15, 30, 0.9), rgba(7, 13, 26, 0.92)),
    linear-gradient(to right, rgba(30, 58, 138, 0.22) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 58, 138, 0.2) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.hero-tech .badge {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(59, 130, 246, 0.45);
  color: #93c5fd;
}

.hero-tech h1 {
  color: #f8fbff !important;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.12;
}

.hero-tech p {
  color: #a7b7d4 !important;
}

.hero-tech .status-row {
  border-top-color: rgba(71, 85, 105, 0.8);
}

.hero-tech .status-item span {
  color: #7f95bb;
}

.hero-tech .status-item strong {
  color: #e5efff;
}

.hero-tech .hero-visual {
  min-height: 420px;
  border: none;
  box-shadow: none;
  background: transparent;
}

.hero-terminal {
  height: 100%;
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.45);
}

.hero-terminal .terminal-head {
  border-bottom-color: rgba(51, 65, 85, 0.75);
}

.hero-terminal .terminal-head small {
  color: #64748b;
}

.hero-terminal .terminal-card {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(51, 65, 85, 0.85);
}

.hero-terminal .terminal-card p {
  color: #94a3b8 !important;
}

.hero-terminal .terminal-card strong {
  color: #f8fbff !important;
}

.hero-terminal .terminal-log {
  background: rgba(2, 6, 23, 0.65);
  border-color: rgba(51, 65, 85, 0.75);
  color: #8ea3c7;
}

.text-center {
  text-align: center;
}

.btn-row-center {
  justify-content: center;
  margin-top: 0;
}

.container-narrow {
  max-width: 900px;
}

.rule-muted {
  border-color: rgba(148, 163, 184, 0.28);
  margin: 20px 0;
}

/* Industries page style matching reference card layout */
.industries-showcase {
  background: #eef1f6;
}

.industry-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.industry-card {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  background: #ffffff;
  border: 1px solid #dbe2ee;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.industry-left {
  position: relative;
  min-height: 360px;
}

.industry-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.05));
}

.industry-overlay h3 {
  margin: 0 0 8px;
  color: #fff !important;
  font-size: 34px;
  font-weight: 800;
}

.industry-overlay p {
  margin: 0;
  color: #dbeafe !important;
}

.industry-right {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.industry-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.industry-block {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #e2e8f0;
}

.industry-block h4 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.industry-block p {
  margin: 0;
  font-size: 13px;
  color: #475569 !important;
  line-height: 1.6;
}

.industry-block.pain {
  background: #fef7ed;
  border-color: #fed7aa;
}

.industry-block.pain h4 {
  color: #c2410c !important;
}

.industry-block.arch {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.industry-block.arch h4 {
  color: #1d4ed8 !important;
}

.industry-nodes h4 {
  margin: 0 0 10px;
  color: #0f172a !important;
  font-size: 14px;
}

.industry-nodes .pill {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
}

.industry-value {
  border-radius: 12px;
  padding: 14px;
  background: #0f172a;
  border: 1px solid #1e293b;
}

.industry-value h4 {
  margin: 0 0 8px;
  color: #22c55e !important;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.industry-value p {
  margin: 0;
  color: #dbeafe !important;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .industry-card {
    grid-template-columns: 1fr;
  }
  .industry-left {
    min-height: 290px;
  }
}

@media (max-width: 768px) {
  .industry-top-grid {
    grid-template-columns: 1fr;
  }
}

/* Industries section dark mode (page-scoped) */
.industries-dark .industries-showcase.page-panel {
  background: linear-gradient(180deg, rgba(10, 17, 32, 0.8), rgba(15, 23, 42, 0.72));
  border-color: rgba(59, 130, 246, 0.24);
}

.industries-dark .industry-card {
  background: rgba(15, 23, 42, 0.58);
  border-color: rgba(148, 163, 184, 0.24);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.industries-dark .industry-overlay {
  background: linear-gradient(to top, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.12));
}

.industries-dark .industry-block {
  background: rgba(15, 23, 42, 0.48);
  border-color: rgba(148, 163, 184, 0.24);
}

.industries-dark .industry-block h4 {
  color: #dbeafe !important;
}

.industries-dark .industry-block p {
  color: #bcd0f3 !important;
}

.industries-dark .industry-block.pain {
  background: rgba(251, 146, 60, 0.14);
  border-color: rgba(251, 146, 60, 0.32);
}

.industries-dark .industry-block.pain h4 {
  color: #fdba74 !important;
}

.industries-dark .industry-block.arch {
  background: rgba(59, 130, 246, 0.16);
  border-color: rgba(96, 165, 250, 0.34);
}

.industries-dark .industry-block.arch h4 {
  color: #93c5fd !important;
}

.industries-dark .industry-nodes h4 {
  color: #dbeafe !important;
}

.industries-dark .industry-nodes .pill {
  background: rgba(15, 23, 42, 0.62);
  border-color: rgba(148, 163, 184, 0.24);
  color: #dbeafe;
}

.industries-dark .industry-value {
  background: rgba(2, 6, 23, 0.78);
  border-color: rgba(59, 130, 246, 0.3);
}

.industries-dark .industry-value h4 {
  color: #4ade80 !important;
}

.industries-dark .industry-value p {
  color: #dbeafe !important;
}

/* Reference-style refresh: light, airy, enterprise portal */
:root {
  --bg-dark: #0d1528;
  --bg-darker: #0a1120;
  --bg-panel: #131f36;
  --text-light: #c7d2e5;
  --text-muted: #9aaccc;
  --text-dark: #e6edf9;
  --blue: #3b82f6;
  --orange: #f59e0b;
  --border-dark: #233556;
  --border-light: #2a3f66;
  --cyan: #fb923c;
}

body {
  background: linear-gradient(180deg, #0a1120 0%, #0d162b 100%);
  color: #e6edf9;
}

.header {
  background: rgba(10, 17, 32, 0.86);
  border-bottom: 1px solid #233556;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.45);
}

.logo {
  background: #12223d;
  color: #93c5fd;
  border: 1px solid #2d4c79;
}

.nav a {
  color: #c7d2e5;
  border-radius: 999px;
  font-weight: 600;
}

.nav a:hover,
.nav a.active {
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
  border-color: #34558b;
}

.mobile-toggle {
  border-color: #2a3f66;
  color: #c7d2e5;
}

.dark {
  background: linear-gradient(180deg, #0d1528 0%, #101c32 100%);
  color: #e6edf9;
}

.dark::before,
.dark::after,
.hero-noise {
  display: block;
}

.hero h1 {
  color: #f8fbff;
}

.hero p {
  color: #a7b7d4;
}

.badge {
  color: #93c5fd;
  border-color: rgba(245, 158, 11, 0.45);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(245, 158, 11, 0.18));
}

.title-gradient {
  background: linear-gradient(90deg, #1d4ed8 0%, #2b68ff 55%, #6c9dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.btn {
  border-radius: 999px;
  font-weight: 600;
}

.btn.primary {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

.btn.secondary {
  background: rgba(30, 41, 59, 0.8);
  color: #fdba74;
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: none;
}

.btn.secondary:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: #f59e0b;
  color: #fed7aa;
}

.section-title {
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: -0.01em;
}

.section-subtitle {
  color: #9aaccc;
  max-width: 860px;
}

.card {
  background: #131f36;
  border: 1px solid #2a3f66;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.35);
}

.card::before {
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #f59e0b);
}

.card:hover {
  border-color: #3b82f6;
  box-shadow: 0 14px 28px rgba(30, 64, 175, 0.22), 0 0 0 1px rgba(245, 158, 11, 0.18);
}

.card h3 {
  color: #e6edf9;
}

.card p,
.card ul {
  color: #a7b7d4;
}

.solution-card-meta {
  color: #fed7aa;
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.12);
  animation: none;
}

.pill {
  background: #0f1a2e;
  border-color: rgba(245, 158, 11, 0.32);
  color: #c7d2e5;
}

.media-chip {
  background: rgba(10, 17, 32, 0.8);
  border-color: rgba(245, 158, 11, 0.45);
  color: #fdba74;
}

.tab-layout {
  border-color: #2a3f66;
  background: #111d33;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.45);
}

.tab-list {
  background: #0f1a2e;
  border-right-color: #2a3f66;
}

.tab-btn {
  color: #a7b7d4;
}

.tab-btn.active {
  color: #dbeafe;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(245, 158, 11, 0.14));
  border-color: rgba(245, 158, 11, 0.45);
}

.tab-panel {
  background: #131f36;
  color: #e6edf9;
}

.tab-panel p {
  color: #9aaccc;
}

.tab-panel pre {
  background: #0d1628;
  border-color: #2a3f66;
  color: #bfdbfe;
}

.status-row {
  border-top: 1px solid #e6efff;
}

.status-item span {
  color: #64748b;
}

.status-item strong {
  color: #e6edf9;
}

.terminal-panel {
  background: #131f36;
  border-color: #2a3f66;
  box-shadow: 0 10px 32px rgba(30, 64, 175, 0.12);
}

.terminal-head {
  border-bottom-color: #2a3f66;
}

.dots i {
  background: #4f6b95;
}

.terminal-card {
  border-color: #2a3f66;
  background: #0f1a2e;
}

.terminal-card p {
  color: #64748b;
}

.terminal-card strong {
  color: #e6edf9;
}

.terminal-log {
  border-color: #2a3f66;
  background: #0d1628;
  color: #9aaccc;
}

.step {
  border-color: #2a3f66;
  background: #131f36;
}

.step b {
  color: #fdba74;
}

.step h3,
.step p {
  color: #c7d2e5;
}

.faq-item {
  border-color: #2a3f66;
  background: #131f36;
}

.faq-item:hover {
  border-color: #cddfff;
}

.form {
  border-color: #2a3f66;
  background: #131f36;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.45);
}

.form h3,
label {
  color: #dbeafe;
}

input,
textarea,
select {
  border-color: #2a3f66;
  background: #0f1a2e;
  color: #dbeafe;
}

.cta-band {
  background: linear-gradient(180deg, #0f1a2e 0%, #13233f 100%);
  border-top-color: #f59e0b;
  color: #e6edf9;
}

.cta-band p {
  color: #9aaccc;
}

.footer {
  background: linear-gradient(180deg, #0a1120 0%, #0f1a2e 100%);
  color: #c7d2e5;
  border-top: 1px solid rgba(245, 158, 11, 0.38);
}

.footer a:hover {
  color: #1d4ed8;
}

.footer small {
  color: #64748b;
}

/* Solutions page icon + hover enhancement */
.solutions-dark .solution-detail-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.solutions-dark .solution-detail-card:hover {
  transform: translateY(-7px);
  border-color: rgba(96, 165, 250, 0.65);
  box-shadow:
    0 24px 44px rgba(2, 6, 23, 0.55),
    0 0 0 1px rgba(96, 165, 250, 0.22),
    0 0 32px rgba(59, 130, 246, 0.22);
}

.solutions-dark .solution-detail-left {
  overflow: hidden;
}

.solutions-dark .solution-detail-left::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(59, 130, 246, 0.15), transparent 42%, rgba(16, 185, 129, 0.11));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.solutions-dark .solution-detail-card:hover .solution-detail-left::after {
  opacity: 1;
}

.solutions-dark .solution-detail-left img {
  transition: transform 0.45s ease, filter 0.3s ease;
}

.solutions-dark .solution-detail-card:hover .solution-detail-left img {
  transform: scale(1.045);
  filter: saturate(122%) contrast(105%);
}

.solutions-dark .solution-detail-right h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.solutions-dark .solution-detail-right h3::before {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 9px;
  border: 1px solid rgba(147, 197, 253, 0.55);
  background:
    radial-gradient(circle at 30% 28%, rgba(186, 230, 253, 0.85), rgba(59, 130, 246, 0.45) 42%, rgba(30, 64, 175, 0.92) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 14px rgba(59, 130, 246, 0.4);
}

.solutions-dark .solution-detail-right h4 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.solutions-dark .solution-detail-right h4::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(96, 165, 250, 0.6);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(59, 130, 246, 0.2));
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.35);
}

.solutions-dark .solution-benefit {
  position: relative;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.solutions-dark .solution-benefit::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.68);
  background:
    radial-gradient(circle at 38% 35%, rgba(186, 230, 253, 0.9), rgba(59, 130, 246, 0.88) 55%, rgba(30, 64, 175, 0.95));
  box-shadow:
    inset 0 0 0 2px rgba(15, 23, 42, 0.58),
    0 0 10px rgba(59, 130, 246, 0.45);
}

.solutions-dark .solution-benefit:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.62);
  background: rgba(17, 32, 58, 0.95);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.35);
}

/* About page icon + hover enhancement */
.about-dark .about-dark-card,
.about-dark .about-cap-item,
.about-dark .about-coop-item {
  position: relative;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.about-dark .about-dark-card:hover,
.about-dark .about-cap-item:hover,
.about-dark .about-coop-item:hover {
  transform: translateY(-7px);
  border-color: rgba(96, 165, 250, 0.64) !important;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(16, 29, 52, 0.76)) !important;
  box-shadow:
    0 24px 44px rgba(2, 6, 23, 0.55),
    0 0 0 1px rgba(96, 165, 250, 0.22),
    0 0 28px rgba(59, 130, 246, 0.2) !important;
}

.about-dark .about-dark-card h3,
.about-dark .about-cap-item h3,
.about-dark .about-coop-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-dark .about-dark-card h3::before,
.about-dark .about-cap-item h3::before,
.about-dark .about-coop-item h3::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 7px;
  border: 1px solid rgba(147, 197, 253, 0.58);
  background:
    radial-gradient(circle at 34% 30%, rgba(191, 219, 254, 0.88), rgba(59, 130, 246, 0.75) 50%, rgba(30, 64, 175, 0.95));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 12px rgba(59, 130, 246, 0.4);
}

.about-dark .about-cap-item p,
.about-dark .about-coop-item p,
.about-dark .about-dark-card p {
  position: relative;
  padding-left: 18px;
}

.about-dark .about-cap-item p::before,
.about-dark .about-coop-item p::before,
.about-dark .about-dark-card p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.65);
  background:
    radial-gradient(circle at 30% 30%, rgba(186, 230, 253, 0.88), rgba(59, 130, 246, 0.92));
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.36);
}

/* Topic-specific icons for About cards */
.about-dark .topic-mission h3::before,
.about-dark .topic-vision h3::before,
.about-dark .topic-architecture h3::before,
.about-dark .topic-integration h3::before,
.about-dark .topic-process h3::before,
.about-dark .topic-data-viz h3::before,
.about-dark .topic-iteration h3::before,
.about-dark .topic-consulting h3::before,
.about-dark .topic-poc h3::before,
.about-dark .topic-modular h3::before,
.about-dark .topic-platform h3::before,
.about-dark .topic-operations h3::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px, auto;
}

.about-dark .topic-mission h3::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"),
    conic-gradient(from 160deg, rgba(14, 165, 233, 0.2), rgba(59, 130, 246, 0.95), rgba(14, 165, 233, 0.2));
}

.about-dark .topic-vision h3::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff4d6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l3 6 6 3-6 3-3 6-3-6-6-3 6-3z'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(251, 191, 36, 0.24));
}

.about-dark .topic-architecture h3::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='7' height='7' rx='1'/%3E%3Crect x='13' y='4' width='7' height='7' rx='1'/%3E%3Crect x='8.5' y='13' width='7' height='7' rx='1'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(59, 130, 246, 0.94), rgba(14, 165, 233, 0.2));
}

.about-dark .topic-integration h3::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 7V5a2 2 0 0 1 2-2h1v6h-1A2 2 0 0 1 8 7zM16 17v2a2 2 0 0 1-2 2h-1v-6h1a2 2 0 0 1 2 2z'/%3E%3Cpath d='M11 12h2'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(99, 102, 241, 0.92), rgba(59, 130, 246, 0.28));
}

.about-dark .topic-process h3::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h7l2 3h9v11H3z'/%3E%3Cpath d='M8 13h8M8 17h5'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(147, 197, 253, 0.24));
}

.about-dark .topic-data-viz h3::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19h16'/%3E%3Cpath d='M7 16v-4M12 16V8M17 16v-6'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(56, 189, 248, 0.22));
}

.about-dark .topic-iteration h3::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dcfce7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 0 1-15.5 6.4L3 16'/%3E%3Cpath d='M3 12a9 9 0 0 1 15.5-6.4L21 8'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(16, 185, 129, 0.92), rgba(34, 197, 94, 0.22));
}

.about-dark .topic-consulting h3::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cpath d='m20 20-4-4'/%3E%3C/svg%3E"),
    radial-gradient(circle at 30% 30%, rgba(191, 219, 254, 0.88), rgba(59, 130, 246, 0.82));
}

.about-dark .topic-poc h3::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 2v6l-4 7a4 4 0 0 0 3.5 6h5a4 4 0 0 0 3.5-6l-4-7V2'/%3E%3Cpath d='M8 11h8'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(6, 182, 212, 0.92), rgba(59, 130, 246, 0.24));
}

.about-dark .topic-modular h3::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='6' height='6' rx='1'/%3E%3Crect x='14' y='4' width='6' height='6' rx='1'/%3E%3Crect x='4' y='14' width='6' height='6' rx='1'/%3E%3Crect x='14' y='14' width='6' height='6' rx='1'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(30, 64, 175, 0.25));
}

.about-dark .topic-platform h3::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1fae5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Ccircle cx='5' cy='19' r='2'/%3E%3Ccircle cx='19' cy='19' r='2'/%3E%3Cpath d='M12 7v5M10.5 13 7 17M13.5 13 17 17'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(34, 197, 94, 0.24));
}

.about-dark .topic-operations h3::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 7 7 14'/%3E%3Cpath d='M5 19l4-1 9-9-3-3-9 9-1 4z'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(59, 130, 246, 0.24));
}

/* About icon refinement: professional, minimal, enterprise style */
.about-dark .topic-mission h3::before,
.about-dark .topic-vision h3::before,
.about-dark .topic-architecture h3::before,
.about-dark .topic-integration h3::before,
.about-dark .topic-process h3::before,
.about-dark .topic-data-viz h3::before,
.about-dark .topic-iteration h3::before,
.about-dark .topic-consulting h3::before,
.about-dark .topic-poc h3::before,
.about-dark .topic-modular h3::before,
.about-dark .topic-platform h3::before,
.about-dark .topic-operations h3::before {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 4px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: none;
  background-color: rgba(15, 23, 42, 0.92);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
}

.about-dark .topic-mission h3::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }
.about-dark .topic-vision h3::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l3 6 6 3-6 3-3 6-3-6-6-3 6-3z'/%3E%3C/svg%3E"); }
.about-dark .topic-architecture h3::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='7' height='7' rx='1'/%3E%3Crect x='13' y='4' width='7' height='7' rx='1'/%3E%3Crect x='8.5' y='13' width='7' height='7' rx='1'/%3E%3C/svg%3E"); }
.about-dark .topic-integration h3::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 7V5a2 2 0 0 1 2-2h1v6h-1A2 2 0 0 1 8 7zM16 17v2a2 2 0 0 1-2 2h-1v-6h1a2 2 0 0 1 2 2z'/%3E%3Cpath d='M11 12h2'/%3E%3C/svg%3E"); }
.about-dark .topic-process h3::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h7l2 3h9v11H3z'/%3E%3Cpath d='M8 13h8M8 17h5'/%3E%3C/svg%3E"); }
.about-dark .topic-data-viz h3::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19h16'/%3E%3Cpath d='M7 16v-4M12 16V8M17 16v-6'/%3E%3C/svg%3E"); }
.about-dark .topic-iteration h3::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 0 1-15.5 6.4L3 16'/%3E%3Cpath d='M3 12a9 9 0 0 1 15.5-6.4L21 8'/%3E%3C/svg%3E"); }
.about-dark .topic-consulting h3::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cpath d='m20 20-4-4'/%3E%3C/svg%3E"); }
.about-dark .topic-poc h3::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 2v6l-4 7a4 4 0 0 0 3.5 6h5a4 4 0 0 0 3.5-6l-4-7V2'/%3E%3Cpath d='M8 11h8'/%3E%3C/svg%3E"); }
.about-dark .topic-modular h3::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='6' height='6' rx='1'/%3E%3Crect x='14' y='4' width='6' height='6' rx='1'/%3E%3Crect x='4' y='14' width='6' height='6' rx='1'/%3E%3Crect x='14' y='14' width='6' height='6' rx='1'/%3E%3C/svg%3E"); }
.about-dark .topic-platform h3::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Ccircle cx='5' cy='19' r='2'/%3E%3Ccircle cx='19' cy='19' r='2'/%3E%3Cpath d='M12 7v5M10.5 13 7 17M13.5 13 17 17'/%3E%3C/svg%3E"); }
.about-dark .topic-operations h3::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 7 7 14'/%3E%3Cpath d='M5 19l4-1 9-9-3-3-9 9-1 4z'/%3E%3C/svg%3E"); }

/* Contact page: mature enterprise visual for assessment panel */
.contact-dark .contact-assessment-card {
  padding: 26px 24px;
  border-radius: 14px;
  border: 1px solid rgba(100, 116, 139, 0.38) !important;
  background: linear-gradient(180deg, rgba(10, 17, 30, 0.92), rgba(12, 20, 35, 0.84)) !important;
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.34) !important;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-dark .contact-assessment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(148, 163, 184, 0.6) !important;
  box-shadow: 0 22px 36px rgba(2, 6, 23, 0.44) !important;
}

.contact-dark .contact-assessment-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #e2e8f0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-dark .contact-assessment-card h3::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 3px;
  border: 1px solid rgba(148, 163, 184, 0.62);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 12h6M12 9v6'/%3E%3Cpath d='M4 5h16v14H4z'/%3E%3C/svg%3E") center/11px 11px no-repeat,
    rgba(15, 23, 42, 0.96);
}

.contact-dark .contact-assessment-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.contact-dark .contact-assessment-card li {
  position: relative;
  padding: 10px 10px 10px 34px;
  border-radius: 8px;
  border: 1px solid rgba(71, 85, 105, 0.5);
  background: rgba(15, 23, 42, 0.62);
  color: #cbd5e1 !important;
  line-height: 1.65;
}

.contact-dark .contact-assessment-card li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.62);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center/9px 9px no-repeat,
    rgba(15, 23, 42, 0.94);
}

.contact-dark .contact-assessment-card .rule-muted {
  margin: 16px 0 14px;
  border: 0;
  border-top: 1px solid rgba(71, 85, 105, 0.54);
}

.contact-dark .contact-assessment-card p {
  margin: 10px 0 0;
  color: #94a3b8 !important;
  line-height: 1.75;
  font-size: 14px;
}

/* Blue-orange accent boost */
:root {
  --brand-blue-strong: #3b82f6;
  --brand-orange-strong: #f59e0b;
}

.section-title {
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 88px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue-strong), var(--brand-orange-strong));
  opacity: 0.9;
}

.badge {
  border-color: rgba(59, 130, 246, 0.45) !important;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(245, 158, 11, 0.2)) !important;
}

.nav a.active,
.nav a:hover {
  border-color: rgba(245, 158, 11, 0.34) !important;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.14);
}

.btn.primary {
  background: linear-gradient(90deg, #2563eb, #3b82f6 58%, #f59e0b) !important;
}

.btn.secondary {
  border-color: rgba(245, 158, 11, 0.45) !important;
}

.card,
.square-card,
.feature-item,
.solution-detail-card,
.industry-card,
.form {
  border-top-color: rgba(245, 158, 11, 0.35) !important;
  box-shadow:
    0 10px 26px rgba(2, 6, 23, 0.3),
    0 0 0 1px rgba(59, 130, 246, 0.08) !important;
}

.card h3,
.square-card h3,
.feature-item h3,
.solution-detail-right h3,
.industry-overlay h3,
.form h3 {
  color: #e8f1ff !important;
  text-shadow: 0 0 14px rgba(59, 130, 246, 0.16);
}

/* Brand wording: blue + orange (no gradient fill) */
.brand-duo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  font-weight: 800;
}

.brand-duo span:first-child {
  color: #3b82f6;
}

.brand-duo span:last-child {
  color: #f59e0b;
}

/* Buttons: solid colors only, no gradients */
.btn.primary {
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28) !important;
}

.btn.primary:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
}

.btn.secondary {
  background: #f59e0b !important;
  border-color: #f59e0b !important;
  color: #111827 !important;
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.26) !important;
}

.btn.secondary:hover {
  background: #d97706 !important;
  border-color: #d97706 !important;
  color: #111827 !important;
}

.btn.primary::before {
  display: none !important;
}

/* Global dark mode with stronger blue/orange accents */
:root {
  --accent-blue: #3b82f6;
  --accent-blue-soft: rgba(59, 130, 246, 0.2);
  --accent-orange: #f59e0b;
  --accent-orange-soft: rgba(245, 158, 11, 0.2);
}

body {
  background:
    radial-gradient(circle at 14% 8%, rgba(59, 130, 246, 0.14), transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(245, 158, 11, 0.12), transparent 30%),
    linear-gradient(180deg, #0a1120 0%, #0d162b 100%) !important;
}

.header {
  border-bottom-color: rgba(59, 130, 246, 0.3) !important;
}

.section-title {
  color: #e6edf9 !important;
}

.section-title::after {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange)) !important;
}

.badge,
.pill,
.media-chip {
  border-color: rgba(59, 130, 246, 0.45) !important;
  background: rgba(37, 99, 235, 0.18) !important;
  color: #dbeafe !important;
}

.card,
.square-card,
.feature-item,
.faq-item,
.solution-detail-card,
.industry-card,
.about-dark-card,
.about-cap-item,
.about-coop-item,
.form,
.step {
  border-color: rgba(71, 85, 105, 0.72) !important;
  box-shadow:
    0 14px 28px rgba(2, 6, 23, 0.36),
    inset 0 1px 0 rgba(59, 130, 246, 0.1) !important;
}

.card:hover,
.square-card:hover,
.feature-item:hover,
.faq-item:hover,
.solution-detail-card:hover,
.industry-card:hover,
.about-dark-card:hover,
.about-cap-item:hover,
.about-coop-item:hover,
.form:hover,
.step:hover {
  border-color: rgba(245, 158, 11, 0.52) !important;
  box-shadow:
    0 18px 36px rgba(2, 6, 23, 0.48),
    0 0 0 1px rgba(59, 130, 246, 0.22) !important;
}

.nav a.active,
.nav a:hover {
  color: #e8f1ff !important;
  background: rgba(59, 130, 246, 0.18) !important;
  border-color: rgba(245, 158, 11, 0.38) !important;
}

.status-item strong,
.metric,
.kpi,
.value {
  color: var(--accent-orange) !important;
}

.rule-muted,
hr {
  border-color: rgba(59, 130, 246, 0.26) !important;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent-blue) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22) !important;
}

/* CTA visual style V2 (for homepage page-cta section) */
.page-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(59, 130, 246, 0.26), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(245, 158, 11, 0.2), transparent 30%),
    linear-gradient(110deg, rgba(13, 23, 41, 0.96), rgba(16, 29, 52, 0.94)) !important;
  border: 1px solid rgba(96, 165, 250, 0.36) !important;
  box-shadow:
    0 24px 42px rgba(2, 6, 23, 0.44),
    inset 0 1px 0 rgba(147, 197, 253, 0.2) !important;
}

.page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(59, 130, 246, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at 50% 40%, #000 58%, transparent 100%);
}

.page-cta .section-title {
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -0.01em;
  color: #f4f8ff !important;
}

.page-cta .section-subtitle {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: #c9d9f5 !important;
}

.page-cta .btn-row {
  margin-top: 18px;
}

.page-cta .btn {
  min-width: 180px;
  font-weight: 700;
}

.page-cta .btn.primary {
  background: #2563eb !important;
  border-color: #2563eb !important;
}

.page-cta .btn.primary:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
}

.page-cta .btn.secondary {
  background: #f59e0b !important;
  border-color: #f59e0b !important;
  color: #111827 !important;
}

.page-cta .btn.secondary:hover {
  background: #d97706 !important;
  border-color: #d97706 !important;
  color: #111827 !important;
}
