/* ===================================
   ROBOTORYO CYBER-MINIMALIST UI
   Corporate Deep-Tech Design
   =================================== */

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

:root {
  /* Corporate Cyber-minimalist Palette */
  --primary-blue: #015d84;
  --primary-light: #0a89c0;
  --primary-dark: #003d56;
  --accent-cyan: #22d3ee;
  --accent-purple: #6366f1;
  --accent-green: #22c55e;

  /* Dark Depth */
  --bg-deep: #050508;
  --bg-elevated: #0a0a0f;
  --bg-card: #0f0f16;
  --bg-hover: #171720;

  /* Glass Effects */
  --glass-bg: rgba(15, 15, 22, 0.85);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(1, 93, 132, 0.4);
  --blur-heavy: blur(40px) saturate(180%);
  --blur-medium: blur(20px) saturate(130%);

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 100px;
}

/* ===================================
   BASE RESET
   =================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  background: var(--bg-deep);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===================================
   CIRCUIT BACKGROUND ANIMATION
   =================================== */

.circuit-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.circuit-grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(90deg, rgba(1, 93, 132, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(1, 93, 132, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.circuit-nodes {
  position: absolute;
  inset: 0;
}

.circuit-node {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 50%;
  opacity: 0.3;
  animation: nodePulse 3s ease-in-out infinite;
  box-shadow: 0 0 10px var(--primary-blue);
}

.circuit-node:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.circuit-node:nth-child(2) { top: 25%; left: 65%; animation-delay: 0.5s; }
.circuit-node:nth-child(3) { top: 45%; left: 25%; animation-delay: 1s; }
.circuit-node:nth-child(4) { top: 65%; left: 75%; animation-delay: 1.5s; }
.circuit-node:nth-child(5) { top: 80%; left: 40%; animation-delay: 2s; }
.circuit-node:nth-child(6) { top: 15%; left: 85%; animation-delay: 2.5s; }

@keyframes nodePulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.5); }
}

/* ===================================
   GRADIENT MESH BACKGROUND
   =================================== */

.gradient-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: meshFloat 15s ease-in-out infinite;
}

.mesh-orb:nth-child(1) {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.mesh-orb:nth-child(2) {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
}

.mesh-orb:nth-child(3) {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: -10s;
}

@keyframes meshFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  33% {
    transform: translate(50px, -30px) scale(1.1);
    opacity: 0.5;
  }
  66% {
    transform: translate(-30px, 50px) scale(0.95);
    opacity: 0.35;
  }
}

/* ===================================
   INTERACTIVE CUSTOM CURSOR
   =================================== */



/* ===================================
   NAVIGATION - FLOATING GLASS
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-heavy);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar.scrolled {
    padding: 0.5rem 1.5rem;
    background: rgba(10, 10, 15, 0.95);
    border-bottom-color: rgba(1, 93, 132, 0.3);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(1, 93, 132, 0.1);
}



.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #fff;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  border-radius: 12px;
  font-size: 1.25rem;
  animation: logoGlow 3s ease-in-out infinite;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  animation: logoGlow 3s ease-in-out infinite;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #fff;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 12px;
}

@keyframes logoGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(1, 93, 132, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(10, 137, 192, 0.5);
  }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 0.5rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1, 93, 132, 0.12), rgba(99, 102, 241, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
}

.nav-link.active {
  border: 1px solid rgba(1, 93, 132, 0.4);
}

.nav-cta {
  display: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-medium);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  gap: 5px;
  padding: 0;
  transition: all 0.3s ease;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  border-color: var(--primary-light);
  box-shadow: 0 0 20px rgba(1, 93, 132, 0.2);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
@media (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    top: 90px;
    left: 20px;
    right: 20px;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: var(--blur-heavy);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .nav-link.active {
    background: linear-gradient(135deg, rgba(1, 93, 132, 0.12), rgba(99, 102, 241, 0.1));
    border-color: var(--primary-light);
    box-shadow: 0 0 20px rgba(1, 93, 132, 0.2);
  }
}

@media (min-width: 1024px) {
  .nav-menu { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ===================================
   NEON BUTTONS
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
  color: #ffffff;
  box-shadow:
    0 4px 30px rgba(1, 93, 132, 0.3),
    0 0 60px rgba(1, 93, 132, 0.15);
}

.btn-primary:hover {
  box-shadow:
    0 6px 35px rgba(1, 93, 132, 0.4),
    0 0 80px rgba(10, 137, 192, 0.2);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 0 30px rgba(1, 93, 132, 0.2);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

/* ===================================
   HERO SECTION - CYBER-MINIMALIST
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-3xl) + 120px) 0 var(--space-2xl);
    overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-md);
}

/* Hero Logo */
.hero-logo-container {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(1, 93, 132, 0.18) 0%, rgba(99, 102, 241, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  animation: heroLogoPulse 4s ease-in-out infinite;
  filter: blur(20px);
}

@keyframes heroLogoPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.9;
  }
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 32px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
  .hero-logo-container {
    width: 200px;
    height: 200px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-medium);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-bottom: var(--space-lg);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-light);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Cyber-minimalist Typography */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: var(--space-md);
}

.title-line {
  display: block;
  position: relative;
}

/* Shimmer effect */
.shimmer-text {
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 40%,
    var(--primary-light) 50%,
    #fff 60%,
    #fff 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Corporate stroke text */
.neon-stroke {
  -webkit-text-stroke: 2px var(--primary-blue);
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 20px rgba(1, 93, 132, 0.5),
    0 0 40px rgba(1, 93, 132, 0.3),
    0 0 80px rgba(10, 137, 192, 0.2);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: var(--blur-medium);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  min-width: 140px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-light);
  text-shadow: 0 0 20px rgba(10, 137, 192, 0.5);
  line-height: 1;
}

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===================================
   FLOATING 3D BENTO LAYOUT
   =================================== */

.features {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-medium);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}

.section-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Capabilities Grid — uniform 2-col layout */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding: 0 var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* bento-item-large no longer spans — all cards are uniform */
.bento-item-large {
  grid-column: span 1;
  grid-row: span 1;
}

/* Cards */
.bento-card {
  position: relative;
  padding: var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: var(--blur-medium);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(1, 93, 132, 0.08);
  overflow: hidden;
}

/* Colored top-accent line */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan), var(--accent-purple));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.bento-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(1, 93, 132, 0.18);
  transform: translateY(-5px);
}

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

.bento-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(1, 93, 132, 0.35);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.bento-card:hover .bento-card-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(1, 93, 132, 0.5);
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.bento-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ===================================
   TECHNOLOGY TIMELINE
   =================================== */

.timeline-section {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-purple), var(--primary-light));
  transform: translateX(-50%);
  opacity: 0.3;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-node {
  grid-column: 1;
  justify-self: end;
}

.timeline-node {
  width: 60px;
  height: 60px;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-medium);
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(1, 93, 132, 0.3);
  position: relative;
  z-index: 2;
}

.timeline-node svg {
  width: 28px;
  height: 28px;
  color: var(--primary-light);
}

.timeline-content {
  padding: var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: var(--blur-medium);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-light);
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: var(--space-md);
  }

  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 2;
  }

  .timeline-item:nth-child(even) .timeline-node,
  .timeline-item:nth-child(odd) .timeline-node {
    grid-column: 1;
    justify-self: start;
  }
}

/* ===================================
   PLATFORMS SECTION — Rich Cards
   =================================== */

.platforms {
  padding: var(--space-3xl) 0;
  position: relative;
}

.platforms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 640px) {
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .platforms-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---- Card Base ---- */
.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-medium);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ambient glow orb — unique color per card */
.platform-card-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  top: -40px;
  right: -40px;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.platform-card.atlas    .platform-card-glow { background: radial-gradient(circle, rgba(1,93,132,0.7), transparent 70%); }
.platform-card.datavisio .platform-card-glow { background: radial-gradient(circle, rgba(99,102,241,0.6), transparent 70%); }
.platform-card.ai       .platform-card-glow { background: radial-gradient(circle, rgba(10,137,192,0.65), transparent 70%); }
.platform-card.nexus    .platform-card-glow { background: radial-gradient(circle, rgba(34,195,94,0.5), transparent 70%); }

.platform-card:hover .platform-card-glow {
  opacity: 1;
}

/* Bottom colored border on hover */
.platform-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.platform-card.atlas::after    { background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan)); }
.platform-card.datavisio::after { background: linear-gradient(90deg, var(--accent-purple), var(--primary-light)); }
.platform-card.ai::after       { background: linear-gradient(90deg, var(--primary-light), var(--accent-purple)); }
.platform-card.nexus::after    { background: linear-gradient(90deg, var(--accent-green), var(--primary-light)); }

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.45),
    0 0 50px rgba(1,93,132,0.15);
}
.platform-card:hover::after { opacity: 1; }

/* All inner content sits above glow */
.platform-card > *:not(.platform-card-glow) { position: relative; z-index: 1; }

/* ---- Top row: icon + status badge ---- */
.platform-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.platform-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.platform-card:hover .platform-icon {
  transform: scale(1.1) rotate(-4deg);
}

.platform-card.atlas    .platform-icon { background: linear-gradient(135deg, var(--primary-blue), var(--primary-light)); box-shadow: 0 8px 20px rgba(1,93,132,0.45); }
.platform-card.datavisio .platform-icon { background: linear-gradient(135deg, var(--accent-purple), #818cf8);             box-shadow: 0 8px 20px rgba(99,102,241,0.4); }
.platform-card.ai       .platform-icon { background: linear-gradient(135deg, var(--primary-light), var(--accent-purple)); box-shadow: 0 8px 20px rgba(10,137,192,0.4); }
.platform-card.nexus    .platform-icon { background: linear-gradient(135deg, var(--accent-green), var(--primary-light));  box-shadow: 0 8px 20px rgba(34,197,94,0.35); }

/* Status badge */
.platform-status {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid;
}
.platform-status.active {
  color: #4ade80;
  border-color: rgba(74,222,128,0.3);
  background: rgba(74,222,128,0.08);
}
.platform-status.beta {
  color: #fbbf24;
  border-color: rgba(251,191,36,0.3);
  background: rgba(251,191,36,0.08);
}

/* Platform label (mono, small) */
.platform-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.4rem;
  opacity: 0.8;
}
.platform-card.datavisio .platform-label { color: #818cf8; }
.platform-card.nexus     .platform-label { color: var(--accent-green); }

/* Card heading */
.platform-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Description */
.platform-card p {
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* ---- Feature Tags ---- */
.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.p-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.platform-card:hover .p-tag {
  background: rgba(1,93,132,0.12);
  border-color: rgba(10,137,192,0.25);
  color: var(--accent-cyan);
}

/* ---- Metrics row ---- */
.platform-metrics {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.25rem;
}

.p-metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.p-metric-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.platform-card.atlas    .p-metric-val { color: var(--primary-light); }
.platform-card.datavisio .p-metric-val { color: #818cf8; }
.platform-card.ai       .p-metric-val { color: var(--accent-cyan); }
.platform-card.nexus    .p-metric-val { color: var(--accent-green); }

.p-metric-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}

/* ---- CTA link ---- */
.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: auto;
}
.platform-card.datavisio .platform-link { color: #818cf8; }
.platform-card.nexus     .platform-link { color: var(--accent-green); }

.platform-card:hover .platform-link {
  gap: 0.8rem;
  color: #fff;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta {
  padding: var(--space-3xl) 0;
  position: relative;
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl);
  background: var(--glass-bg);
  backdrop-filter: var(--blur-heavy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple), var(--primary-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.cta-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 2fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  text-decoration: none;
  color: #fff;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-light);
  text-shadow: 0 0 10px rgba(10, 137, 192, 0.5);
}

.footer-bottom {
  max-width: 1400px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-lg) var(--space-md) 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

/* ===================================
   ATLAS DASHBOARD STYLES
   =================================== */

.dashboard {
  padding: calc(var(--space-3xl) + 100px) 0 var(--space-2xl);
  min-height: 100vh;
}

.dashboard-header {
  max-width: 1400px;
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-md);
}

.dashboard-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dashboard-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-green);
  margin-top: var(--space-sm);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 5px var(--accent-green); }
  50% { opacity: 0.5; box-shadow: 0 0 15px var(--accent-green); }
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dashboard-card {
  position: relative;
  padding: var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: var(--blur-medium);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
  opacity: 0.5;
}

.dashboard-card.large {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .dashboard-card.large {
    grid-column: span 2;
  }
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

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

.card-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.25rem;
}

.card-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Live Chart Animation */
.live-chart {
  height: 100px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding-top: var(--space-md);
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary-light), var(--primary-blue));
  border-radius: 2px 2px 0 0;
  opacity: 0.7;
  animation: chartPulse 1.5s ease-in-out infinite;
}

.chart-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.chart-bar:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.chart-bar:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.chart-bar:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.chart-bar:nth-child(5) { height: 60%; animation-delay: 0.4s; }
.chart-bar:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.chart-bar:nth-child(7) { height: 45%; animation-delay: 0.6s; }
.chart-bar:nth-child(8) { height: 95%; animation-delay: 0.7s; }

@keyframes chartPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Terminal Output */
.terminal-output {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.terminal-line {
  display: flex;
  gap: 0.5rem;
}

.terminal-prompt {
  color: var(--accent-green);
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--primary-light);
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

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

/* Progress Bars */
.progress-item {
  margin-bottom: var(--space-sm);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.progress-label {
  color: rgba(255, 255, 255, 0.7);
}

.progress-value {
  color: var(--primary-light);
  font-family: var(--font-mono);
}

.progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-light));
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* Data Grid */
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.data-item {
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
}

.data-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.data-value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--primary-light);
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-text {
  text-shadow: 0 0 20px rgba(1, 93, 132, 0.5);
}

.hidden {
  display: none !important;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

/* ===================================
   FORM STYLES
   =================================== */

/* Form inputs focus state */
#web3form input:focus,
#web3form textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(1, 93, 132, 0.15);
  background: rgba(1, 93, 132, 0.05);
}

/* Success notification animation */
#form-success {
  animation: fadeInUp 0.5s ease;
}
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 767px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }
}

/* ===================================
   MASTERPIECE ENHANCEMENTS
   =================================== */

/* -----------------------------------
   HIGH-TECH PAGE LOADER
   ----------------------------------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.loader-orbit {
  position: relative;
  width: 120px;
  height: 120px;
}

.loader-orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-top-color: var(--primary-light);
  border-radius: 50%;
  animation: orbitSpin 2s linear infinite;
}

.loader-orbit-ring.ring-2 {
  inset: 10px;
  border-top-color: var(--accent-purple);
  animation-duration: 1.5s;
  animation-direction: reverse;
}

.loader-orbit-ring.ring-3 {
  inset: 20px;
  border-top-color: var(--primary-blue);
  animation-duration: 1s;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.loader-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  font-size: 2rem;
  color: var(--primary-light);
  z-index: 2;
  text-shadow: 0 0 20px var(--primary-light);
}

.loader-pulse {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.3;
  animation: loaderPulse 1.5s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

.loader-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.loader-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2em;
}

.loader-subtitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.loader-progress {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 1rem;
  overflow: hidden;
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-light), var(--accent-purple));
  animation: loadProgress 1.5s ease-out forwards;
}

@keyframes loadProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.loader-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: statusBlink 1s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* -----------------------------------
   CUSTOM TECH SCROLLBAR
   ----------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-elevated);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-light), var(--accent-purple));
  border-radius: 4px;
  border: 2px solid var(--bg-elevated);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-blue), var(--primary-light));
}

::-webkit-scrollbar-corner {
  background: var(--bg-elevated);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) var(--bg-elevated);
}

/* -----------------------------------
   SKELETON LOADING
   ----------------------------------- */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(1, 93, 132, 0.1) 50%,
    rgba(255, 255, 255, 0.03) 75%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-grid {
  background-image:
    linear-gradient(rgba(1, 93, 132, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 93, 132, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: gridPulse 3s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* -----------------------------------
   MAGNETIC BUTTONS
   ----------------------------------- */
.magnetic-btn {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.magnetic-btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* -----------------------------------
   TYPING EFFECT
   ----------------------------------- */
.typing-text {
  font-family: var(--font-mono);
  position: relative;
}

.typing-text::after {
  content: '|';
  animation: cursorBlink 1s step-end infinite;
  color: var(--primary-light);
  margin-left: 2px;
}

.hero-typing {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--primary-light);
  margin-bottom: var(--space-md);
  min-height: 1.5rem;
}
