.elementor-31 .elementor-element.elementor-element-6e36d06{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-b52afa2 */* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
 
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'ss02', 'cv11';
}
 
/* Faint dot grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center top, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 80%);
}
 
/* Yellow glow mesh behind hero */
.glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 800px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 204, 27, 0.22), transparent 50%),
    radial-gradient(circle at 70% 55%, rgba(255, 225, 105, 0.15), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(245, 184, 0, 0.10), transparent 60%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  animation: glowDrift 18s ease-in-out infinite alternate;
}
 
@keyframes glowDrift {
  0%   { transform: translateX(-50%) translateY(0) scale(1); }
  50%  { transform: translateX(-48%) translateY(-30px) scale(1.05); }
  100% { transform: translateX(-52%) translateY(20px) scale(0.98); }
}
 
main, header, footer { position: relative; z-index: 2; }
 
/* Top status bar */
.statusbar {
  border-bottom: 1px solid var(--line);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.statusbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.statusbar img { height: 28px; width: auto; display: block; }
.status-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.status-meta .sep { color: var(--ink-4); }
.status-online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
}
.status-online .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
 
/* Hero */
.hero {
  position: relative;
  padding: 100px 24px 80px;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
 
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}
.hero-eyebrow .pulse-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--yellow), 0 0 4px var(--yellow);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}/* End custom CSS */