/* Fonts Custom Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* Color & Typography Variable Tokens */
:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  
  --color-brand-primary: #8b5cf6;
  --color-brand-primary-hover: #7c3aed;
  --color-brand-dark: #0c0c0e;
  --color-brand-card: rgba(17, 17, 19, 0.75);
  --color-brand-border: #27272a;
  
  --max-width: 80rem; /* 1280px equivalent */
}

/* Base resets & typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-brand-dark);
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-brand-dark);
  color: #f4f4f5;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll reveal animation styles */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Structural Layout Tools */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}
@media (min-width: 640px) { .section-container { padding: 0 1.75rem; } }
@media (min-width: 1024px) { .section-container { padding: 0 2.5rem; } }

/* Two-column split layout — stacks on mobile, side-by-side on desktop */
.split-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .split-layout {
    flex-direction: row;
    gap: 3rem;
  }
  .split-layout > * {
    flex: 1;
    min-width: 0;
  }
}

/* Two-column grid layout — stacks on mobile, grid on desktop */
.grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Alignment utilities */
.items-start   { align-items: flex-start; }
.items-center  { align-items: center; }
.items-stretch { align-items: stretch; }

.relative-z { position: relative; z-index: 10; }
.text-center { text-align: center; }
.text-white { color: #ffffff; }
.text-primary { color: var(--color-brand-primary); }
.font-semibold { font-weight: 600; }
.shrink-0 { flex-shrink: 0; }
.mt-0.5 { margin-top: 0.125rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.pt-2 { padding-top: 0.5rem; }
.w-full { width: 100%; }

/* Global Icons */
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }

/* Header Layout */
.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(12, 12, 14, 0.8);
  border-bottom: 1px solid var(--color-brand-border);
  transition: background-color 0.3s;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) { .header-container { padding: 0 2.5rem; } }

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-box {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--color-brand-primary), #1e1b4b);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo-group:hover .logo-box {
  transform: rotate(6deg) scale(1.05);
}

.logo-text-icon {
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  vertical-align: middle;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logo-group:hover .logo-text { color: var(--color-brand-primary); }

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}
@media (min-width: 768px) { .nav-menu { display: flex; } }

.nav-link {
  color: #a1a1aa;
}
.nav-link:hover { color: white; }

.nav-link-demo {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.pulse-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--color-brand-primary);
  animation: pulse-kf 2s infinite ease-in-out;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.talk-us-link {
  display: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a1a1aa;
  font-weight: 500;
}
@media (min-width: 640px) { .talk-us-link { display: inline-block; } }
.talk-us-link:hover { color: white; }

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.35rem;
  height: 0.9rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}
@media (min-width: 768px) { .mobile-menu-toggle { display: none; } }

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background-color: rgba(12, 12, 14, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-container {
  width: 100%;
  max-width: 20rem;
  height: 100%;
  background-color: rgba(14, 14, 17, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 1px solid var(--color-brand-border);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.active .drawer-container {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #a1a1aa;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-close:hover { color: white; }

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: auto;
}

.drawer-link {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.drawer-link:hover { color: white; padding-left: 0.25rem; }

.drawer-link-demo {
  color: var(--color-brand-primary);
}

.drawer-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-brand-border);
}

/* Buttons Global Framework */
.btn-primary {
  background-color: var(--color-brand-primary);
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover {
  background-color: var(--color-brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.btn-secondary {
  background-color: #18181b;
  color: white;
  font-weight: 500;
  border: 1px solid var(--color-brand-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-secondary:hover {
  background-color: #27272a;
  border-color: #3f3f46;
  transform: translateY(-2px);
}

.btn-small { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-large { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
.btn-mini { padding: 0.35rem 0.75rem; font-size: 11px; border-radius: 0.25rem; }

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-brand-border);
}
@media (min-width: 768px) { .hero-section { padding-top: 6rem; padding-bottom: 8rem; } }

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, #27272a 1px, transparent 1px), linear-gradient(to bottom, #27272a 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
  opacity: 0.25;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr  1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 3rem; } }

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .hero-content { grid-column: span 6 / span 6; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: white;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(to right, var(--color-brand-primary), #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #a1a1aa;
  line-height: 1.6;
  max-width: 38rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.partnership-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(24, 24, 27, 0.8);
  border: 1px solid var(--color-brand-border);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  width: fit-content;
}

.pulse-container {
  position: relative;
  display: flex;
  height: 0.5rem;
  width: 0.5rem;
}

.pulse-ring {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: var(--color-brand-primary);
  opacity: 0.75;
  animation: ping-kf 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-core {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  height: 0.5rem;
  width: 0.5rem;
  background-color: var(--color-brand-primary);
}

.badge-text { font-size: 0.75rem; font-weight: 500; color: #d4d4d8; }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; align-items: center; gap: 1rem; } }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: #71717a;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* 3D WebGL Viewport */
.hero-viewport {
  position: relative;
}
@media (min-width: 1024px) { .hero-viewport { grid-column: span 6 / span 6; } }

.blur-glow {
  position: absolute;
  inset: -1rem;
  background-color: rgba(139, 92, 246, 0.05);
  border-radius: 1.5rem;
  filter: blur(24px);
  z-index: 1;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.hero-viewport:hover .blur-glow {
  filter: blur(32px);
  opacity: 0.8;
}

.viewport-window {
  position: relative;
  background-color: rgba(12, 12, 14, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.viewport-window:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 30px 60px -15px rgba(139, 92, 246, 0.18);
}

.viewport-topbar {
  background-color: #18181b;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--color-brand-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-dots {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}
.dot.bg-red { background-color: #ef4444; }
.dot.bg-orange { background-color: #f97316; }
.dot.bg-yellow { background-color: #eab308; }
.dot.bg-green { background-color: #22c55e; }
.dot.bg-blue { background-color: #3b82f6; }

.topbar-title {
  font-size: 11px;
  font-family: var(--font-mono);
  color: #71717a;
  margin-left: 0.5rem;
}

.viewport-badge {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--color-brand-primary);
  background-color: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.viewport-canvas {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background-color: #18181b;
}

.canvas-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.viewport-canvas:hover .canvas-img { transform: scale(1.025); }

.canvas-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(12, 12, 14, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.viewport-canvas:hover .canvas-overlay {
  background-color: rgba(12, 12, 14, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.overlay-button {
  background-color: #0c0c0e;
  border: 1px solid var(--color-brand-border);
  color: white;
  padding: 0.55rem 1.15rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.viewport-canvas:hover .overlay-button {
  border-color: var(--color-brand-primary);
  transform: scale(1.05);
  box-shadow: 0 15px 25px -5px rgba(139, 92, 246, 0.25);
}

.viewport-footer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #111113;
  border-top: 1px solid var(--color-brand-border);
  padding: 0.625rem;
}

.stat-block {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.stat-block.border-r {
  border-right: 1px solid var(--color-brand-border);
}

.stat-label {
  font-size: 9px;
  font-family: var(--font-mono);
  color: #52525b;
  text-transform: uppercase;
}

.stat-value {
  font-size: clamp(10px, 1.5vw, 12px);
  font-family: var(--font-mono);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Problem Section (Operational Challenge) */
.problem-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-brand-border);
  background-color: #0c0c0e;
}
@media (min-width: 768px) { .problem-section { padding: 8rem 0; } }

.section-header {
  max-width: 64rem;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-tag {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-brand-primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.6;
}
.max-w-2xl { max-width: 48rem; }
.max-w-xl { max-width: 36rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; justify-content: space-between;} }

.features-grid-4-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .features-grid-4-columns { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }

.feature-card {
  border-radius: 0.75rem;
  border: 1px solid var(--color-brand-border);
  background-color: var(--color-brand-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 15px 35px -10px rgba(139, 92, 246, 0.2);
  background-color: rgba(20, 20, 24, 0.85);
}

.card-interior {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.feature-icon {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.05);
}

.feature-icon.icon-red {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.feature-icon.icon-orange {
  background-color: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  color: #f97316;
}

.feature-icon.icon-yellow {
  background-color: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  color: #eab308;
}

.feature-icon.icon-green {
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #22c55e;
}

.feature-icon.icon-blue {
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.card-desc {
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.55;
}

.card-footer-tag {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
}

.card-footer-tag.text-red { color: #ef4444; }
.card-footer-tag.text-orange { color: #f97316; }
.card-footer-tag.text-yellow { color: #eab308; }
.card-footer-tag.text-green { color: #22c55e; }
.card-footer-tag.text-blue { color: #3b82f6; }

/* Product Section (omnipraxis Solution & Simulator) */
.product-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-brand-border);
  background-color: rgba(17, 17, 19, 0.3);
}
@media (min-width: 768px) { .product-section { padding: 8rem 0; } }

.product-narrative {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.narrative-perks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.perk-item {
  display: flex;
  gap: 1rem;
}

.perk-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.perk-heading {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.perk-body {
  font-size: 0.85rem;
  color: #a1a1aa;
  line-height: 1.5;
}

/* Simulator Container */
.simulator-wrapper {
  width: 100%;
}

.simulator-header {
  padding: 1rem;
  border-bottom: 1px solid var(--color-brand-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .simulator-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.simulator-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}

.simulator-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
}

.simulator-tabs {
  display: flex;
  gap: 0.375rem;
  background-color: #0c0c0e;
  padding: 0.1875rem;
  border-radius: 0.375rem;
  border: 1px solid var(--color-brand-border);
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 0.35rem 0.75rem;
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  color: #71717a;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover { color: #d4d4d8; }
.tab-btn.active {
  background-color: #18181b;
  color: white;
  border: 1px solid var(--color-brand-border);
}

.simulator-body {
  background-color: #0e0e11;
}

.metadata-bar {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-brand-border);
}
@media (min-width: 640px) {
  .metadata-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.meta-block {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.meta-row-group {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}
@media (max-width: 639px) {
  .meta-row-group {
    justify-content: space-between;
    border-top: 1px solid var(--color-brand-border);
  }
}

.meta-label {
  font-size: 9px;
  font-family: var(--font-mono);
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-value {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
}
.meta-value.text-red { color: #ef4444; }
.meta-value.text-orange { color: #f97316; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.border-l { border-left: 1px solid var(--color-brand-border); }
.pl-4 { padding-left: 1rem; }

.scenario-quote {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: #a1a1aa;
  padding: 1rem;
  background-color: rgba(12, 12, 14, 0.5);
  border-bottom: 1px solid var(--color-brand-border);
  line-height: 1.5;
}

.steps-container-grid {
  display: grid;
  grid-template-cols: 1fr;
}
@media (min-width: 768px) {
  .steps-container-grid {
    grid-template-cols: 1.2fr 1fr;
  }
}

.procedural-steps-box {
  padding: 1rem;
  border-bottom: 1px solid var(--color-brand-border);
}
@media (min-width: 768px) {
  .procedural-steps-box {
    border-bottom: none;
    border-right: 1px solid var(--color-brand-border);
  }
}

.steps-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.tracking-widest { letter-spacing: 0.1em; }

.steps-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-card {
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--color-brand-border);
  background-color: #0c0c0e;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-layout-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.step-info-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-complete {
  opacity: 0.7;
}

.step-active {
  border-color: rgba(139, 92, 246, 0.4);
  background-color: rgba(139, 92, 246, 0.02);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.05);
}

.step-locked {
  opacity: 0.4;
}

.step-number-indicator {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background-color: var(--color-brand-primary);
  color: black;
  font-size: 9px;
  font-family: var(--font-mono);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.step-number-indicator.locked {
  background-color: #27272a;
  color: #71717a;
}

.step-text {
  font-size: 11px;
  line-height: 1.4;
  font-weight: 500;
}
.text-zinc-400 { color: #a1a1aa; }
.text-zinc-500 { color: #71717a; }

.hazard-alert-box {
  background-color: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 0.25rem;
  padding: 0.5rem;
  font-size: 10px;
  color: #fca5a5;
  display: flex;
  gap: 0.375rem;
  line-height: 1.4;
}

/* HUD Monitor layout */
.hud-analytics-feed {
  padding: 1rem;
  background-color: #0b0b0d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.hud-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 0.375rem;
}

.gauges-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gauge-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gauge-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-family: var(--font-mono);
  color: #71717a;
}

.progress-track {
  position: relative;
  height: 4px;
  background-color: #1f1f23;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--color-brand-primary);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-fill.alert-fill {
  background-color: #f97316;
}

.safe-zone-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: rgba(34, 197, 94, 0.15);
}

.hud-target-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 0.75rem;
}

.target-requirement-text {
  font-size: 10px;
  font-family: var(--font-mono);
  color: #a1a1aa;
  line-height: 1.4;
  margin-top: 0.25rem;
}

/* Demo CTA Section */
.demo-cta-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-brand-border);
}
@media (min-width: 768px) { .demo-cta-section { padding: 8rem 0; } }

.gradient-callout-card {
  position: relative;
  background-color: rgba(17, 17, 19, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-brand-border);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
@media (min-width: 768px) { .gradient-callout-card { padding: 3.5rem 3rem; } }
.gradient-callout-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.12);
}

.blur-glow.right-glow {
  right: -5rem;
  top: -5rem;
  background-color: rgba(139, 92, 246, 0.07);
  width: 20rem;
  height: 20rem;
}

.blur-glow.left-glow {
  left: -5rem;
  bottom: -5rem;
  background-color: rgba(139, 92, 246, 0.04);
  width: 20rem;
  height: 20rem;
}

.demo-cta-narrative {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  color: var(--color-brand-primary);
  font-size: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  width: fit-content;
}

.mockup-preview-card {
  background-color: #0c0c0e;
  border: 1px solid var(--color-brand-border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  transition: border-color 0.4s;
}
.gradient-callout-card:hover .mockup-preview-card {
  border-color: rgba(139, 92, 246, 0.2);
}

.preview-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-brand-border);
  padding-bottom: 0.5rem;
}

.tiny-pulse {
  height: 0.375rem;
  width: 0.375rem;
}

.browser-address-bar {
  background-color: #18181b;
  border: 1px solid var(--color-brand-border);
  border-radius: 0.375rem;
  padding: 0.375rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.address-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #71717a;
}

.core-elements-box {
  background-color: #111113;
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 0.5rem;
  padding: 0.875rem;
}

.elements-badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.element-badge {
  background-color: #0c0c0e;
  border: 1px solid var(--color-brand-border);
  padding: 0.375rem 0.625rem;
  border-radius: 0.25rem;
  font-size: 10px;
  font-family: var(--font-mono);
  color: #a1a1aa;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Research Section (Built with Research Depth) */
.research-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-brand-border);
}
@media (min-width: 768px) { .research-section { padding: 8rem 0; } }

.academic-seal-wrapper {
  position: relative;
}

.seal-backing-card {
  position: relative;
  background-color: rgba(17, 17, 19, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-brand-border);
  border-radius: 0.75rem;
  padding: 2rem;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.seal-backing-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
}

.dot-matrix-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 0.75rem 0.75rem;
  opacity: 0.5;
}

.seal-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.seal-icon-circle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-heading-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
}

.seal-serial-number {
  font-family: var(--font-mono);
  font-size: 9px;
  color: #52525b;
  margin-top: 0.125rem;
}

.divider-line {
  height: 1px;
  background: linear-gradient(to right, var(--color-brand-border), transparent);
  margin: 1.5rem 0;
}

.academic-pillars-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pillar-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pillar-tag {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 600;
}

.pillar-description {
  font-size: 0.8rem;
  color: #a1a1aa;
  line-height: 1.5;
}

.synergy-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  font-size: 9px;
  font-family: var(--font-mono);
  margin-top: 1.5rem;
}

.research-narrative-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.research-badge-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-brand-primary);
}

.research-text-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  color: #a1a1aa;
  line-height: 1.6;
}

.academic-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 0.75rem;
}

.academic-outline-link {
  border: 1px solid var(--color-brand-border);
  background-color: #111113;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4d4d8;
}
.academic-outline-link:hover { border-color: rgba(139, 92, 246, 0.35); color: white; background-color: #141418; }

/* Lifecycle Integration lifecycle */
.lifecycle-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-brand-border);
  background-color: rgba(17, 17, 19, 0.2);
}
@media (min-width: 768px) { .lifecycle-section { padding: 8rem 0; } }

.steps-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .steps-flow-grid {
    grid-template-cols: repeat(4, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .steps-flow-grid {
    gap: 2rem;
  }
}

.horizontal-connecting-line {
  display: none;
  position: absolute;
  top: 2.625rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background-color: var(--color-brand-border);
  z-index: 1;
}
@media (min-width: 768px) { .horizontal-connecting-line { display: block; } }

.lifecycle-step-card {
  position: relative;
  z-index: 2;
  background-color: var(--color-brand-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-brand-border);
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lifecycle-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 15px 35px -10px rgba(139, 92, 246, 0.2);
  background-color: rgba(20, 20, 24, 0.85);
}

.step-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step-badge-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: #0c0c0e;
  border: 1px solid var(--color-brand-border);
  color: var(--color-brand-primary);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lifecycle-step-card:hover .step-badge-number {
  border-color: var(--color-brand-primary);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
  background-color: rgba(139, 92, 246, 0.1);
  color: white;
}

.step-text-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-card-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  transition: color 0.2s;
}

.step-card-description {
  font-size: 0.8rem;
  color: #a1a1aa;
  line-height: 1.5;
}

/* Team section */
.team-section-wrapper {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-brand-border);
  background-color: #0c0c0e;
}
@media (min-width: 768px) { .team-section-wrapper { padding: 8rem 0; } }

.team-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .team-split-grid {
    grid-template-cols: repeat(2, 1fr);
    gap: 3rem;
  }
}

.team-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.column-header-row {
  border-bottom: 1px solid var(--color-brand-border);
  padding-bottom: 0.75rem;
}

.column-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.column-title.text-zinc-400 { color: #a1a1aa; }

.profiles-stack {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.profile-card {
  background-color: var(--color-brand-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-brand-border);
  border-radius: 0.625rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.profile-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 10px 25px -10px rgba(139, 92, 246, 0.2);
  background-color: rgba(20, 20, 24, 0.85);
}

.profile-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: #0c0c0e;
  border: 1px solid var(--color-brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.profile-card:hover .profile-icon-box {
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary);
}
.profile-icon-box.text-primary { color: var(--color-brand-primary); }

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.profile-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.profile-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.profile-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.profile-desc {
  font-size: 0.775rem;
  color: #a1a1aa;
  line-height: 1.5;
}

/* Contact Captures & Channels */
.contact-section {
  padding: 4rem 0;
  background-color: #0c0c0e;
}
@media (min-width: 768px) { .contact-section { padding: 8rem 0; } }

.contact-channels-box {
  background-color: var(--color-brand-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-brand-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1rem;
}

.channel-anchor-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: #a1a1aa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.channel-anchor-row:last-child { border-bottom: none; }
.channel-anchor-row:hover { color: white; padding-left: 0.25rem; }

.lead-form-wrapper {
  width: 100%;
}

.lead-form {
  background-color: var(--color-brand-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-brand-border);
  padding: 1.75rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
  transition: border-color 0.4s, box-shadow 0.4s;
}
@media (min-width: 640px) { .lead-form { padding: 2.25rem; } }
.lead-form:hover {
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .form-row { grid-template-cols: repeat(2, minmax(0, 1fr)); } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 9px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #71717a;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background-color: #0c0c0e;
  border: 1px solid var(--color-brand-border);
  border-radius: 0.375rem;
  padding: 0.55rem 0.875rem;
  font-size: 0.85rem;
  color: white;
  font-family: inherit;
  transition: all 0.25s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-brand-primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
  background-color: #0e0e11;
}

.form-select { color: #a1a1aa; cursor: pointer; }
.form-textarea { resize: vertical; }

.radio-card-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0c0c0e;
  border: 1px solid var(--color-brand-border);
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  flex: 1;
  transition: all 0.2s ease;
}
.radio-card-option.active {
  border-color: rgba(139, 92, 246, 0.4);
  background-color: rgba(139, 92, 246, 0.03);
  color: white;
}
.radio-card-option.muted { color: #52525b; }
.radio-card-option:hover { border-color: rgba(255, 255, 255, 0.15); }

.hidden-radio {
  display: none;
}

.radio-heading {
  font-size: 0.75rem;
  font-weight: 500;
}

.form-submit {
  width: 100%;
  background-color: var(--color-brand-primary);
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  padding: 0.75rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-submit:hover {
  background-color: var(--color-brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* GDPR / Consent Checkbox Styling */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  padding: 0.25rem 0;
}

.consent-checkbox {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-brand-primary);
  border: 1px solid var(--color-brand-border);
  background-color: #0c0c0e;
  border-radius: 0.25rem;
  cursor: pointer;
}

.consent-text {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #a1a1aa;
  user-select: none;
}

/* Form Error Message Box */
.form-error-message {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  color: #f87171;
  font-size: 0.8rem;
  line-height: 1.4;
  animation: formFadeIn 0.3s ease-out;
}

/* Form Success State styling */
.form-success-state {
  text-align: center;
  padding: 2rem 1rem;
  animation: formFadeIn 0.5s ease-out;
}

.success-icon-circle {
  margin: 0 auto 1.5rem auto;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-primary);
}

.success-heading {
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.success-body {
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.6;
  max-width: 24rem;
  margin: 0 auto;
}

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

/* Global Footers */
.main-footer {
  border-top: 1px solid var(--color-brand-border);
  background-color: #0c0c0e;
  padding: 1.75rem 0;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: #52525b;
}

.footer-split-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 640px) {
  .footer-split-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
@media (min-width: 640px) {
  .footer-logo-block {
    flex-direction: row;
    align-items: center;
  }
}

.box-mini {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #a1a1aa;
}

.footer-tagline {
  font-size: 10px;
  color: #3f3f46;
}

.footer-copyright-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}
@media (min-width: 640px) {
  .footer-copyright-block {
    align-items: flex-end;
  }
}

.text-muted-dark { color: #3f3f46; }
.font-10 { font-size: 9px; }

/* Custom System Keyframes */
@keyframes pulse-kf {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.9); }
}

@keyframes ping-kf {
  75%, 100% { transform: scale(2.2); opacity: 0; }
}