/* ==========================================================================
   NOVI B.V. — DESIGN SYSTEM
   Theme: Green & Black — Dark Luxury Casino (Dribbble Casino Template style)
   ========================================================================== */

:root {
  --bg-dark: #020604;
  --bg-card: rgba(4, 18, 11, 0.75);
  --border-neon: rgba(16, 185, 129, 0.25);
  --border-neon-hover: rgba(0, 255, 157, 0.8);
  
  --neon-green: #00ff9d;
  --neon-glow: rgba(0, 255, 157, 0.15);
  --green-pri: #10b981;
  --green-sec: #047857;
  
  --text-primary: #e2fbf0;
  --text-secondary: #86efac;
  --text-muted: #4ade80;
  
  --font-family: 'Outfit', sans-serif;
  
  --grad-primary: linear-gradient(135deg, var(--neon-green) 0%, var(--green-pri) 100%);
  --grad-text: linear-gradient(120deg, #ffffff 20%, #a7f3d0 70%, var(--neon-green) 100%);
  --grad-card-bg: linear-gradient(145deg, rgba(6, 26, 16, 0.9) 0%, rgba(2, 8, 5, 0.95) 100%);
  
  --transition-smooth: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  min-height: 100vh;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(0, 255, 157, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(2, 6, 4, 1) 0%, rgba(1, 3, 2, 1) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

.page-wrapper {
  position: relative;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(0, 255, 157, 0.15);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  font-weight: 900;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 300;
  opacity: 0.85;
}

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

/* Scroll Progress Bar */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: scroll())) {
    @keyframes grow-progress {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    #progress {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 4px;
      background: var(--neon-green);
      transform-origin: 0 50%;
      z-index: 1000;
      box-shadow: 0 0 15px var(--neon-green), 0 0 30px rgba(0, 255, 157, 0.5);
      animation: grow-progress auto linear;
      animation-timeline: scroll();
    }
  }
}

/* Buttons with Neon Physics */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--grad-primary);
  color: #010603;
  box-shadow: 0 0 0 0 rgba(0, 255, 157, 0), 0 4px 20px rgba(16, 185, 129, 0.35);
  border: 1px solid var(--neon-green);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px var(--neon-glow), 0 8px 30px rgba(0, 255, 157, 0.5);
}

.btn-secondary {
  background: rgba(0, 255, 157, 0.05);
  border: 1px solid var(--border-neon);
  color: var(--neon-green);
  box-shadow: inset 0 0 8px rgba(0, 255, 157, 0.02);
}

.btn-secondary:hover {
  background: rgba(0, 255, 157, 0.12);
  border-color: var(--neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.15);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 255, 157, 0.4);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-primary.loading .btn-text {
  opacity: 0;
}

.btn-primary.loading .spinner {
  display: inline-block;
}

.spinner {
  display: none;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid rgba(1, 6, 3, 0.25);
  border-top-color: #010603;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  position: absolute;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Transparent Navbar with Active Neon Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  background: rgba(2, 6, 4, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 157, 0.08);
  transition: var(--transition-smooth);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
}

.logo-text {
  font-family: var(--font-family);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #ffffff 40%, var(--neon-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 3rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.8;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #ffffff;
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 10px var(--neon-green);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.mobile-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  cursor: pointer;
  z-index: 200;
}

.hamburger {
  display: block;
  width: 1.6rem;
  height: 2px;
  background: var(--neon-green);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition-smooth);
}

.hamburger::before, .hamburger::after {
  content: '';
  width: 1.6rem;
  height: 2px;
  background: var(--neon-green);
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-toggle.active .hamburger {
  background: transparent;
}

.mobile-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Hero Section - Asymmetric 60/40 Split */
.hero {
  position: relative;
  padding: 12rem 0 8rem 0;
  overflow: hidden;
}

.hero-bg-glowing {
  position: absolute;
  top: -20%;
  left: 60%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 157, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  background: rgba(0, 255, 157, 0.04);
  border: 1px solid rgba(0, 255, 157, 0.25);
  color: var(--neon-green);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(0, 255, 157, 0.03);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green), 0 0 16px var(--neon-green);
  display: inline-block;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.hero-title .text-gradient {
  text-shadow: 0 0 40px rgba(0, 255, 157, 0.25);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

/* Right Side Stacked Cards with Neon Border */
/* Hero Visual Wrapper & Mockup Frame */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
}
.hero-mockup-frame {
  position: relative;
  background: var(--grad-card-bg);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  padding: 0.35rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  transition: var(--transition-smooth);
}
.hero-mockup-frame:hover {
  border-color: rgba(0, 255, 157, 0.4);
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.15);
}
.hmf-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(0, 255, 157, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.hero-mockup-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Floating neon stats overlapping mockup */
.floating-neon-card {
  position: absolute;
  background: rgba(2, 8, 4, 0.95);
  border: 1px solid var(--border-neon);
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  transition: var(--transition-smooth);
  z-index: 10;
}
.floating-neon-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.25);
}
.fnc-1 {
  top: -1.5rem;
  right: -1rem;
}
.fnc-2 {
  bottom: -1rem;
  left: -2rem;
}
.fnc-3 {
  bottom: 3rem;
  right: -1.5rem;
}
.fnc-number {
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 10px var(--neon-green);
}
.fnc-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* Animations loading trigger */
.fade-in-element {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.fade-in-element:nth-child(1) { animation-delay: 0.1s; }
.fade-in-element:nth-child(2) { animation-delay: 0.25s; }
.fade-in-element:nth-child(3) { animation-delay: 0.4s; }
.fade-in-element:nth-child(4) { animation-delay: 0.55s; }

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

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal-on-scroll {
      opacity: 0;
      transform: translateY(40px);
      animation: revealUp linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 25%;
    }
    @keyframes revealUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
  }
}

/* Marquee scrolling strip with neon glow on hover */
.marquee-section {
  padding: 3rem 0;
  background: rgba(4, 18, 11, 0.4);
  border-top: 1px solid rgba(0, 255, 157, 0.05);
  border-bottom: 1px solid rgba(0, 255, 157, 0.05);
  position: relative;
  overflow: hidden;
}

.marquee-header {
  max-width: 1240px;
  margin: 0 auto 1.5rem auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.marquee-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

.marquee-indicator {
  font-size: 0.85rem;
  color: var(--neon-green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
}

.marquee-wrapper::before, .marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
  padding: 0.5rem 0;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  height: 3.5rem;
  width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 26, 16, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 8px;
  transition: var(--transition-fast);
}

.marquee-item img {
  max-height: 1.75rem;
  max-width: 80%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: var(--transition-fast);
}

.marquee-item:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.25);
  background: rgba(0, 255, 157, 0.05);
  transform: scale(1.05);
}

.marquee-item:hover img {
  opacity: 1;
}

/* Bento Grid Features Layout */
.offerings {
  padding: 8rem 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bento-card {
  position: relative;
  background: var(--grad-card-bg);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.card-large {
  grid-column: span 2;
}

.card-small {
  grid-column: span 1;
}

.bento-glow-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--neon-green) 50%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 157, 0.4);
  box-shadow: 0 15px 35px rgba(0, 255, 157, 0.08);
}

.bento-card:hover .bento-glow-border {
  opacity: 1;
}

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

.bento-icon-box {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 8px;
  background: rgba(0, 255, 157, 0.04);
  border: 1px solid rgba(0, 255, 157, 0.2);
  color: var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.bento-icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
}

.bento-card:hover .bento-icon-box {
  background: rgba(0, 255, 157, 0.1);
  border-color: var(--neon-green);
  box-shadow: 0 0 12px rgba(0, 255, 157, 0.2);
}

.bento-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 255, 157, 0.05);
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: 4px;
}

.bento-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.bento-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.85;
}

/* Interactive Showroom / Solutions Layout */
.solutions {
  padding: 8rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 18, 11, 0.5) 50%, transparent 100%);
}

.showcase-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.showcase-pills-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.showcase-pill {
  background: rgba(6, 26, 16, 0.6);
  border: 1px solid var(--border-neon);
  border-radius: 8px;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.showcase-pill:focus {
  outline: none;
  border-color: var(--neon-green);
}

.pill-number {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--neon-green);
  opacity: 0.6;
  transition: var(--transition-fast);
}

.pill-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.showcase-pill:hover,
.showcase-pill.active {
  background: rgba(0, 255, 157, 0.05);
  border-color: var(--neon-green);
  box-shadow: 0 4px 20px rgba(0, 255, 157, 0.08);
}

.showcase-pill:hover .pill-number,
.showcase-pill.active .pill-number {
  opacity: 1;
  text-shadow: 0 0 8px var(--neon-green);
}

.showcase-pill:hover .pill-text,
.showcase-pill.active .pill-text {
  color: #ffffff;
}

/* Showcase display board */
.showcase-board {
  position: relative;
  background: #010402;
  border-radius: 12px;
  min-height: 22rem;
  border: 1px solid rgba(16, 185, 129, 0.15);
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.board-neon-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 255, 157, 0.1);
  pointer-events: none;
  z-index: 5;
}

.showcase-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.5s;
  z-index: 2;
  display: flex;
  align-items: center;
}

.showcase-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: scale(1);
}

.panel-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.panel-info h4 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.panel-info p {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.panel-mini-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 157, 0.2);
  padding: 0.35rem 0.85rem;
  background: rgba(0, 255, 157, 0.04);
  border-radius: 4px;
}

/* Compact Providers mini layout */
.providers-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mini-logo-box {
  background: rgba(6, 26, 16, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 6px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2/1;
}

.mini-logo-box img {
  max-height: 1.5rem;
  max-width: 90%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.4;
}

/* Wireframe Mock Panel */
.wireframe-mock {
  background: #020905;
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.mock-browser-header {
  background: rgba(16, 185, 129, 0.08);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  padding: 0.5rem;
  display: flex;
  gap: 0.35rem;
}

.mock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mock-hero {
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.mock-line {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.mock-line-title {
  width: 60%;
  height: 0.75rem;
  background: rgba(0, 255, 157, 0.25);
}

.mock-line-body {
  width: 90%;
  height: 0.5rem;
}

.mock-glow-orb {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0, 255, 157, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
}

/* Cluster nodes panel */
.cluster-mock {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cluster-node {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem;
  background: rgba(6, 26, 16, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: 6px;
}

.node-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b5563;
}

.cluster-node.active .node-pulse {
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  animation: nodeBlink 1.5s infinite;
}

@keyframes nodeBlink {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 1; }
}

.node-name {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: monospace;
}

/* Payment mock panels */
.payment-mock-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mock-payment-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: rgba(6, 26, 16, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: 6px;
  font-size: 0.9rem;
}

.status-pill {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.15rem 0.6rem;
  border: 1px solid rgba(0, 255, 157, 0.25);
  background: rgba(0, 255, 157, 0.04);
  border-radius: 4px;
}

/* Roadmap Section - 2x2 Glowing Cards */
.process {
  padding: 8rem 0;
}

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

.roadmap-card {
  position: relative;
  background: var(--grad-card-bg);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  padding: 3.5rem 3rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.roadmap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 157, 0.45);
  box-shadow: 0 15px 30px rgba(0, 255, 157, 0.1);
}

.rc-glow-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--neon-green) 50%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.roadmap-card:hover .rc-glow-border {
  opacity: 1;
}

.rc-number {
  font-size: 3.5rem;
  font-weight: 950;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 255, 157, 0.25);
  font-family: var(--font-family);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.roadmap-card:hover .rc-number {
  color: var(--neon-green);
  -webkit-text-stroke: 1px var(--neon-green);
  text-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
}

.rc-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.rc-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.85;
}

/* Contact Section - Dark Luxury Split */
.contact {
  padding: 8rem 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-info .section-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.contact-network-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}

/* Glowing Neon Portal animation */
.neon-portal {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-ring {
  position: absolute;
  border: 1px solid rgba(0, 255, 157, 0.15);
  border-radius: 50%;
  animation: portalSpin 10s linear infinite;
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.05);
}

.ring-1 {
  width: 160px;
  height: 160px;
  border-top-color: var(--neon-green);
  animation-duration: 8s;
}

.ring-2 {
  width: 120px;
  height: 120px;
  border-bottom-color: var(--neon-green);
  animation-duration: 12s;
  animation-direction: reverse;
}

.ring-3 {
  width: 80px;
  height: 80px;
  border-left-color: var(--neon-green);
  animation-duration: 6s;
}

.portal-center {
  width: 44px;
  height: 44px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  color: #010603;
  box-shadow: 0 0 25px var(--neon-green);
  z-index: 2;
}

@keyframes portalSpin {
  to { transform: rotate(360deg); }
}

/* Contact Form Panel with Sleek Green Focus Rings */
.contact-form-panel {
  position: relative;
  background: var(--grad-card-bg);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  padding: 4rem 3.5rem;
  overflow: hidden;
}

.form-glow-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
}

.form-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.form-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(6, 26, 16, 0.5);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 0.95rem 1.25rem;
  border-radius: 6px;
  color: #ffffff;
  font-family: inherit;
  font-weight: 400;
  transition: var(--transition-fast);
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(134, 251, 204, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-green);
  background: rgba(0, 255, 157, 0.04);
  box-shadow: 0 0 0 4px rgba(0, 255, 157, 0.1);
}

.form-group.invalid input,
.form-group.invalid textarea {
  border-color: rgba(239, 68, 68, 0.6);
  background: rgba(239, 68, 68, 0.02);
}

.form-group.invalid input:focus,
.form-group.invalid textarea:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.error-msg {
  font-size: 0.8rem;
  color: #ff6b6b;
  display: none;
  font-weight: 500;
  margin-top: 0.25rem;
}

.form-group.invalid .error-msg {
  display: block;
}

/* Feedback blocks */
.form-feedback {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(6, 26, 16, 0.6);
  border: 1px solid var(--border-neon);
  border-radius: 8px;
  margin-top: 1.5rem;
}

.form-feedback.success {
  border-color: rgba(0, 255, 157, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.05);
}

.form-feedback.error {
  border-color: rgba(239, 68, 68, 0.4);
}

.success-icon {
  width: 2.25rem;
  height: 2.25rem;
  stroke: var(--neon-green);
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px var(--neon-green));
}

.error-icon {
  width: 2.25rem;
  height: 2.25rem;
  stroke: #ff4b4b;
  flex-shrink: 0;
}

.feedback-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.form-feedback p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Footer Section */
.footer {
  padding: 4rem 0;
  background: rgba(1, 4, 2, 0.95);
  border-top: 1px solid rgba(0, 255, 157, 0.06);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-logo-text {
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.1);
}

.footer-legal {
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0.8;
  font-weight: 300;
}

/* Footer Trust seals */
.footer-trust {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.trust-badge:hover {
  opacity: 1;
}
.trust-icon {
  width: 1.15rem;
  height: 1.15rem;
  stroke: var(--neon-green);
  filter: drop-shadow(0 0 4px var(--neon-green));
}
.trust-badge-18 {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--neon-green);
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 255, 157, 0.2);
}

.footer-rights {
  text-align: right;
  max-width: 480px;
}

.footer-rights p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0.75;
  font-weight: 300;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(167, 243, 208, 0.4);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Responsiveness Configuration */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .hero-right {
    margin-top: 2rem;
  }
  .fnc-2 {
    left: -0.5rem;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-large, .card-small {
    grid-column: span 2;
  }
  .showcase-pills-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .panel-content-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .showcase-board {
    min-height: auto;
  }
  .showcase-panel {
    position: relative;
    padding: 3rem 2rem;
    display: none;
    transform: none;
  }
  .showcase-panel.active {
    display: block;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .contact-network-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(2, 6, 4, 0.99);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    z-index: 150;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  .nav-link {
    font-size: 1.35rem;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-cta {
    display: none;
  }
  .hero-title {
    font-size: 3.25rem;
  }
  .section-title {
    font-size: 2.25rem;
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-panel {
    padding: 3rem 2rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .footer-trust {
    justify-content: center;
  }
  .footer-rights {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .card-large, .card-small {
    grid-column: span 2;
  }
  .showcase-pills-row {
    grid-template-columns: 1fr;
  }
  .roadmap-card {
    padding: 2.5rem 1.75rem;
  }
  .floating-neon-card {
    padding: 0.6rem 1rem;
  }
  .fnc-number {
    font-size: 1.5rem;
  }
  .fnc-2 {
    left: -0.25rem;
  }
}

/* Bento Card Corner Visuals (replacing the rectangular tags) */
.bento-corner-visual {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--neon-green);
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.bento-card:hover .bento-corner-visual {
  opacity: 1;
  transform: scale(1.15) rotate(8deg);
  filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.4));
}


