@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
   PSP Ventures Rebuilt Cyber-Neon Style System
   ========================================================================== */

:root {
  /* Colors */
  --bg-primary: #030303;
  --bg-secondary: #050505;
  --bg-tertiary: #0A0A0A;
  --card-bg: rgba(12, 12, 12, 0.65);
  --card-bg-hover: rgba(12, 12, 12, 0.8);
  
  --primary-accent: #8CFF00;      /* Primary Neon Green */
  --primary-accent-alt: #A6FF4D;  /* Secondary Lime */
  --secondary-accent: #00D9FF;    /* Cyan */
  --secondary-accent-alt: #00F0FF;/* Bright Cyan */
  
  --text-primary: #F8F8F8;        /* Crisp White */
  --text-secondary: #C0C0C0;      /* Muted Text (Increased brightness by ~12.5% for readability) */
  --text-muted: #555555;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(140, 255, 0, 0.35);

  /* Multilayer Cyber Glow System */
  --glow-neon-green: 
    0 0 20px rgba(140, 255, 0, 0.45),
    0 0 60px rgba(140, 255, 0, 0.3),
    0 0 120px rgba(0, 217, 255, 0.15);
  
  /* Fonts */
  --font-display: 'Orbitron', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout / UI */
  --max-width: 1200px;
  --header-height: 90px;
  --border-radius-sm: 8px;
  --border-radius-md: 24px;       /* 24px Card Corners as requested */
  --border-radius-lg: 32px;
  --transition-speed: 0.35s;
  --ease-custom: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */

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

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

body {
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background: var(--bg-primary);
}

/* Webkit Scrollbars */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-accent);
}

/* Selection Highlight */
::selection {
  background: rgba(124, 255, 0, 0.25);
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-speed) var(--ease-custom);
}

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

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

/* ==========================================================================
   Typography (Orbitron & Inter)
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-accent-alt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #FFFFFF 15%, #7FFF00 55%, #00E5FF 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.gradient-text-alt {
  background: linear-gradient(135deg, var(--secondary-accent) 0%, var(--secondary-accent-alt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   Global Layout Containers
   ========================================================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}

.section {
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  max-width: 700px;
  margin-bottom: 2rem;
  text-align: left;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-subtitle {
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--primary-accent);
  margin-bottom: 0.75rem;
  display: block;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%; /* Text content 55%, Hologram 45% */
  gap: clamp(3.5rem, 6.5vw, 7.5rem); /* Increased gap by ~30px */
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 1025px) {
  .hero-hologram-col {
    left: -70px; /* Shift hologram 120px left from previous +50px state */
  }
}

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

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

/* ==========================================================================
   Symmetric 2x2 Feature Grid (About Section)
   ========================================================================== */

.feature-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

/* ==========================================================================
   Glassmorphism UI Components
   ========================================================================== */

.glass-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  pointer-events: none;
  opacity: 1;
}

.glass-card:hover {
  background: var(--card-bg-hover);
  border-color: rgba(140, 255, 0, 0.25);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(140, 255, 0, 0.1);
}

/* Specific card accents */
.glass-card.glow-green:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(140, 255, 0, 0.2);
  border-color: rgba(140, 255, 0, 0.25);
}

.glass-card.glow-cyan:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 217, 255, 0.2);
  border-color: rgba(0, 217, 255, 0.25);
}

.glass-card.glow-purple:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(138, 92, 255, 0.2);
  border-color: rgba(138, 92, 255, 0.25);
}

/* ==========================================================================
   Hero Featured Floating App Card
   ========================================================================== */

.hero-featured-card {
  width: 100%;
  background: rgba(12, 12, 12, 0.65); /* background rgba(12,12,12,.65) as requested */
  border: 1px solid rgba(255, 255, 255, 0.08); /* border 1px solid rgba(255,255,255,.08) */
  backdrop-filter: blur(24px); /* blur 24px as requested */
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px; /* corners 24px as requested */
  padding: 1.5rem;
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.15); /* box-shadow 0 0 40px rgba(0,217,255,.15) */
  pointer-events: auto;
  transition: transform 0.4s var(--ease-custom), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  will-change: transform, box-shadow, border-color;
  position: relative;
  overflow: hidden;
}

.hero-featured-card::after {
  content: '';
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.03) 48%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.03) 52%,
    transparent 55%
  );
  transform: rotate(-15deg);
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-featured-card:hover::after {
  transform: translate(25%, 25%) rotate(-15deg);
}

.hero-featured-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(140, 255, 0, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 
              0 0 40px rgba(0, 217, 255, 0.25);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.04em;
  gap: 0.6rem;
}

.btn-primary {
  background: linear-gradient(135deg, #8CFF00, #00F0FF); /* Gradient #8CFF00 -> #00F0FF */
  color: #030303;
  font-weight: 800;
  box-shadow: 
    0 0 15px rgba(140, 255, 0, 0.3),
    0 0 30px rgba(0, 240, 255, 0.1);
  transition: transform var(--transition-speed) var(--ease-custom), 
              box-shadow var(--transition-speed) var(--ease-custom),
              background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 150%;
  transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  transform: scale(1.03) translateY(-2px); /* Scale 1.03 as requested */
  box-shadow: 
    0 0 30px rgba(140, 255, 0, 0.55),
    0 0 60px rgba(0, 240, 255, 0.25),
    0 0 120px rgba(0, 240, 255, 0.15); /* 50% glow increase */
}

/* Social Media Glass Buttons */
.social-glass-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.social-glass-btn:nth-child(odd):hover {
  background: rgba(140, 255, 0, 0.08);
  border-color: var(--primary-accent);
  color: var(--primary-accent);
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(140, 255, 0, 0.35),
              inset 0 0 8px rgba(140, 255, 0, 0.2);
}

.social-glass-btn:nth-child(even):hover {
  background: rgba(0, 217, 255, 0.08);
  border-color: var(--secondary-accent-alt);
  color: var(--secondary-accent-alt);
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.35),
              inset 0 0 8px rgba(0, 217, 255, 0.2);
}

.social-glass-btn svg {
  fill: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 18px;
  height: 18px;
}

.social-glass-btn.linkedin:hover {
  background: rgba(0, 119, 181, 0.08);
  border-color: #0077b5;
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(0, 119, 181, 0.35),
              inset 0 0 8px rgba(0, 119, 181, 0.2);
}
.social-glass-btn.linkedin:hover svg {
  fill: #0077b5;
}

.social-glass-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.08);
  border-color: #cc2366;
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.35),
              inset 0 0 8px rgba(225, 48, 108, 0.2);
}
.social-glass-btn.instagram:hover svg {
  fill: url(#ig-grad);
}

.social-glass-btn.youtube:hover {
  background: rgba(255, 0, 0, 0.08);
  border-color: #FF0000;
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.35),
              inset 0 0 8px rgba(255, 0, 0, 0.2);
}
.social-glass-btn.youtube:hover svg {
  fill: #FF0000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-speed) var(--ease-custom), 
              box-shadow var(--transition-speed) var(--ease-custom),
              border-color var(--transition-speed) var(--ease-custom),
              background 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--primary-accent);
  background: rgba(0, 217, 255, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 217, 255, 0.25);
}

.btn-accent {
  background: linear-gradient(135deg, var(--secondary-accent-alt) 0%, #B693FF 100%);
  color: var(--text-primary);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(138, 92, 255, 0.35);
}

.btn-outlined-neon {
  border: 1px solid var(--primary-accent);
  background: transparent;
  color: var(--primary-accent);
  box-shadow: 0 0 10px rgba(140, 255, 0, 0.1);
  text-shadow: 0 0 5px rgba(140, 255, 0, 0.2);
}

.btn-outlined-neon:hover {
  background: var(--primary-accent);
  color: #030303;
  box-shadow: 0 0 20px var(--primary-accent), 0 0 35px var(--primary-accent-alt);
  transform: translateY(-2px);
  text-shadow: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-speed) var(--ease-custom);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Sticky Capsule Navbar
   ========================================================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center; /* Center nav-container horizontally */
  transition: all var(--transition-speed) var(--ease-custom);
  padding: 1.5rem 0;
}

header.scrolled {
  height: 80px;
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%; /* Adjusted width for clean responsive layouts */
  max-width: 1000px; /* Increased to 1000px for a spacious, premium look */
  margin: 0 auto;
  padding: 0.75rem 2.25rem;
  background: rgba(5, 5, 5, 0.45);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  transition: all var(--transition-speed) var(--ease-custom);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

header.scrolled .nav-container {
  background: rgba(5, 5, 5, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(124, 255, 0, 0.05);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-img {
  height: 68px;
  width: auto;
}

.nav-container .logo-img {
  height: 50px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-left: -0.4rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem; /* Increased gap to ~44px (40-50px range) for clear separation */
  list-style: none;
}

@media screen and (min-width: 1025px) {
  .nav-container {
    position: relative;
  }
  .nav-container nav {
    position: absolute;
    left: calc(50% + 90px); /* Shifted navigation group 90px to the right */
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1024px) and (min-width: 901px) {
  .nav-container {
    position: relative;
    max-width: 900px;
  }
  .nav-container nav {
    position: absolute;
    left: calc(50% + 50px);
    transform: translateX(-50%);
  }
  .nav-links {
    gap: 2rem; /* Reduced gap to prevent overlap on smaller screens */
  }
}

@media screen and (max-width: 900px) and (min-width: 769px) {
  .nav-container {
    position: relative;
    padding: 0.75rem 1.25rem;
  }
  .nav-container nav {
    position: absolute;
    left: calc(50% + 25px);
    transform: translateX(-50%);
  }
  .logo-text {
    font-size: 1rem;
  }
  .nav-links {
    gap: 1.5rem;
  }
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-accent), var(--primary-accent-alt));
  box-shadow: 0 0 10px var(--primary-accent), 0 0 5px var(--primary-accent-alt);
  transition: width 0.4s var(--ease-custom);
  will-change: width;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text-primary);
}

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

/* Hamburger Menu Button */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-speed) var(--ease-custom);
}

/* ==========================================================================
   Footer Component
   ========================================================================== */

footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 6.5rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-info .logo-wrapper {
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-speed) var(--ease-custom);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--text-secondary);
  transition: fill var(--transition-speed) var(--ease-custom);
}

.social-icon:hover {
  border-color: var(--primary-accent);
  background: rgba(124, 255, 0, 0.05);
  transform: translateY(-2px);
}

.social-icon:hover svg {
  fill: var(--primary-accent);
}

.social-icon.linkedin:hover {
  border-color: #0077b5;
  background: rgba(0, 119, 181, 0.05);
  box-shadow: 0 0 12px rgba(0, 119, 181, 0.3);
}

.social-icon.linkedin:hover svg {
  fill: #0077b5;
}

.social-icon.instagram:hover {
  border-color: #cc2366;
  background: rgba(225, 48, 108, 0.05);
  box-shadow: 0 0 12px rgba(225, 48, 108, 0.3);
}

.social-icon.instagram:hover svg {
  fill: url(#ig-grad);
}

.social-icon.youtube:hover {
  border-color: #FF0000;
  background: rgba(255, 0, 0, 0.05);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
}

.social-icon.youtube:hover svg {
  fill: #FF0000;
}

.footer-info .logo-wrapper {
  margin-left: -1.35rem;
}

.footer-info .logo-img {
  height: 78px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--primary-accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--text-secondary);
}

/* ==========================================================================
   Premium Feature Highlights Bar Section
   ========================================================================== */

.highlights-section {
  width: 100%;
  padding: 0 2.5rem;
  display: flex;
  justify-content: center;
  margin-top: 15px; /* Moved 45px upward to reduce empty space below Hero */
  margin-bottom: 20px; /* Restored gap above the horizontal divider */
  position: relative;
  z-index: 10;
}

.highlights-container {
  width: 100%;
  max-width: 1200px;
  height: 75px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 150, 0.15);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
              0 0 20px rgba(0, 255, 150, 0.05); /* Soft neon glow */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlights-container:hover {
  border-color: rgba(0, 255, 150, 0.35);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
              0 0 30px rgba(0, 255, 150, 0.15); /* Soft neon glow on hover */
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(139, 255, 0, 0.1);
  border: 1.5px solid #8BFF00; /* Accent color: Neon Green #8BFF00 */
  color: #8BFF00;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px rgba(139, 255, 0, 0.2);
}

.highlight-icon svg {
  width: 10px;
  height: 10px;
  stroke: #8BFF00;
}

.highlight-text {
  font-family: var(--font-display); /* Futuristic typography */
  font-size: 14.5px; /* Font size: 14px-15px */
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #E5E7EB; /* Text color: #E5E7EB */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-item:hover .highlight-text {
  color: #FFFFFF;
  text-shadow: 0 0 8px rgba(139, 255, 0, 0.5); /* Brighten text and add neon glow */
}

.highlight-item:hover .highlight-icon {
  background: rgba(139, 255, 0, 0.2);
  box-shadow: 0 0 12px rgba(139, 255, 0, 0.5); /* Brighten icon and add neon glow */
  transform: scale(1.05);
}

.highlight-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.08); /* Thin vertical divider line */
}

@media screen and (max-width: 1024px) {
  .highlights-section {
    padding: 0 1.5rem;
  }
  .highlights-container {
    padding: 0 1.25rem;
  }
  .highlight-text {
    font-size: 13px; /* Reduce spacing proportionally */
    letter-spacing: 0.12em;
  }
  .highlight-item {
    gap: 0.6rem;
  }
}

@media screen and (max-width: 768px) {
  .highlights-container {
    height: auto;
    padding: 1.5rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .highlight-divider {
    display: none; /* Stack items into multiple rows */
  }
  .highlight-item {
    width: calc(50% - 1rem); /* Side-by-side or stacked centered */
    min-width: 180px;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .highlight-item {
    width: 100%; /* Fully stacked on mobile portrait */
  }
}

/* ==========================================================================
   About Us Redesigned Section Styling
   ========================================================================== */

/* Ambient glow container */
.about-glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.about-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.12;
  pointer-events: none;
}

.about-glow-green {
  background: radial-gradient(circle, #8CFF00 0%, transparent 70%);
  top: 15%;
  right: 18%;
}

.about-glow-cyan {
  background: radial-gradient(circle, #00F0FF 0%, transparent 70%);
  bottom: 15%;
  right: -2%;
}

/* Feature Grid 2x2 */
.feature-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem; /* Reduced spacing to allow slightly wider cards */
  width: 100%;
}

/* About Card Glassmorphism Redesign */
.about-card {
  height: 100% !important; /* Forces all cards in a grid row to stretch to identical heights */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%), rgba(10, 10, 10, 0.6) !important; /* Glass light reflection gradient overlay */
  border: 1.5px solid rgba(255, 255, 255, 0.08) !important; /* Slightly thicker border for sharp glass edges */
  backdrop-filter: blur(30px) !important; /* Increased backdrop blur from 20px to 30px */
  -webkit-backdrop-filter: blur(30px) !important;
  border-radius: 28px !important;
  padding: 1.85rem 1.65rem !important; /* Reduced internal padding to make cards shorter */
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.05); /* Layered shadow + reflection */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Soft hover glow and elevation */
.about-card:hover {
  transform: translateY(-8px) scale(1.03) !important; /* Elevate card on hover */
  background: rgba(10, 10, 10, 0.85) !important;
}

.about-card.glow-green:hover {
  border-color: rgba(140, 255, 0, 0.35) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 
              0 0 20px rgba(140, 255, 0, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.08); /* Soft hover glow + reflection */
}

.about-card.glow-cyan:hover {
  border-color: rgba(0, 240, 255, 0.35) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 
              0 0 20px rgba(0, 240, 255, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Enhanced Icons */
.about-card-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; /* Increased icon box size */
  height: 58px;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Neon Green Icon Wrapper styling */
.about-card-icon-wrapper.icon-green {
  background: rgba(140, 255, 0, 0.08);
  border: 1px solid rgba(140, 255, 0, 0.2);
  color: #8CFF00; /* Lime green */
  box-shadow: 0 0 15px rgba(140, 255, 0, 0.08); /* Subtle glow */
}

.about-card-icon-wrapper.icon-green svg {
  stroke: #8CFF00 !important;
  filter: drop-shadow(0 0 6px rgba(140, 255, 0, 0.6)); /* Neon glow around icon */
}

/* Cyan Icon Wrapper styling */
.about-card-icon-wrapper.icon-cyan {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: #00F0FF; /* Bright cyan */
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.08);
}

.about-card-icon-wrapper.icon-cyan svg {
  stroke: #00F0FF !important;
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.6)); /* Neon glow around icon */
}

/* Icon hover states */
.about-card:hover .about-card-icon-wrapper.icon-green {
  background: rgba(140, 255, 0, 0.15);
  border-color: rgba(140, 255, 0, 0.4);
  box-shadow: 0 0 20px rgba(140, 255, 0, 0.25);
  transform: rotate(5deg) scale(1.05);
}

.about-card:hover .about-card-icon-wrapper.icon-cyan {
  background: rgba(0, 240, 255, 0.15);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
  transform: rotate(5deg) scale(1.05);
}

.about-card-icon-wrapper svg {
  width: 28px !important; /* Increased icon size by 25% */
  height: 28px !important;
}

/* Typography Refinements for About Card */
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; /* Increased heading size */
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
  color: var(--text-primary);
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.7; /* Increased spacing between text lines */
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ==========================================================================
   About Section Layout Spacing, Card Float & Spacing Refinements
   ========================================================================== */

/* Increased spacing between left content and right card grid */
.about-grid {
  gap: 7rem !important; /* Increased spacing by 50px */
}

@media screen and (max-width: 1024px) {
  .about-grid {
    gap: 3.5rem !important;
  }
}

@media screen and (max-width: 768px) {
  .about-grid {
    gap: 2rem !important;
  }
}

/* Ambient glow centered directly behind the grid card composition */
.grid-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(140, 255, 0, 0.08) 45%, transparent 75%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

/* Card floating wrapper animations (independent from hover state) */
.card-float-wrapper {
  height: 100%;
}

.card-float-wrapper.float-1 {
  animation: about-float-1 7s ease-in-out infinite alternate;
}

.card-float-wrapper.float-2 {
  animation: about-float-2 7s ease-in-out infinite alternate;
}

@keyframes about-float-1 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@keyframes about-float-2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

/* Learn More button size increase (10-15%) */
.btn-about-more {
  padding: 1.25rem 2.85rem !important; /* ~12.5% increase */
  font-size: 1.05rem !important;
  border: 1px solid rgba(140, 255, 0, 0.3) !important;
  transition: all 0.3s ease-in-out !important;
}

.btn-about-more:hover {
  box-shadow: 0 0 15px rgba(140, 255, 0, 0.2), inset 0 0 10px rgba(140, 255, 0, 0.1) !important;
  border-color: rgba(140, 255, 0, 0.6) !important;
}

/* ==========================================================================
   Featured Products Section Premium Redesign
   ========================================================================== */

.products-showcase-section {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  z-index: 1;
  padding: 4.5rem 0;
}

.products-showcase-section::before,
.products-showcase-section::after {
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
  content: none;
}

.products-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/grid-bg.svg');
  background-repeat: repeat;
  opacity: 0.03;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

.products-ambient-glow {
  display: none !important;
}

/* Expanded Grid Container Width (10-15% wider cards) */
.products-showcase-container {
  max-width: 1340px !important;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Premium Product Cards (15% height reduction via padding & margin shifts) */
.product-card {
  height: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.02) 100%), rgba(10, 10, 10, 0.7) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-radius: 24px !important;
  padding: 1.25rem 1.5rem !important; /* Reduced padding to shrink card height */
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.product-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 55%
  );
  transform: rotate(-45deg);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover::after {
  transform: translate(30%, 30%) rotate(-45deg);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.03) !important;
  background: rgba(10, 10, 10, 0.8) !important;
}

/* Card Accents: Green (My Savings Book) */
.product-card.glow-green {
  border: 1.2px solid rgba(140, 255, 0, 0.22) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 
              0 0 15px rgba(140, 255, 0, 0.05),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-card.glow-green:hover {
  border-color: rgba(140, 255, 0, 0.65) !important;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6), 
              0 0 45px rgba(140, 255, 0, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Card Accents: Green/Cyan (PSP Portfolio) */
.product-card.glow-green-cyan {
  border: 1.2px solid rgba(0, 240, 255, 0.22) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 
              0 0 15px rgba(0, 240, 255, 0.05),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-card.glow-green-cyan:hover {
  border-color: rgba(0, 240, 255, 0.65) !important;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6), 
              0 0 25px rgba(140, 255, 0, 0.22),
              0 0 45px rgba(0, 240, 255, 0.36),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Card Accents: Cyan (Expense Manager) */
.product-card.glow-cyan {
  border: 1.2px solid rgba(0, 217, 255, 0.22) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 
              0 0 15px rgba(0, 217, 255, 0.05),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-card.glow-cyan:hover {
  border-color: rgba(0, 217, 255, 0.65) !important;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6), 
              0 0 45px rgba(0, 217, 255, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Card Accents: Purple (AI Assistant) */
.product-card.glow-purple {
  border: 1.2px solid rgba(138, 92, 255, 0.22) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 
              0 0 15px rgba(138, 92, 255, 0.05),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-card.glow-purple:hover {
  border-color: rgba(138, 92, 255, 0.65) !important;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6), 
              0 0 45px rgba(138, 92, 255, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Top Area Layout */
.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

/* Glowing Icon Square */
.product-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* SVGs occupy 75% of icon container space by default */
.product-icon-box svg {
  width: 75%;
  height: 75%;
  object-fit: contain;
  display: block;
}

/* Images fill 75% of icon box by default */
.product-icon-box img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  display: block;
}

.glow-green .product-icon-box {
  background: rgba(140, 255, 0, 0.08);
  border: 1px solid rgba(140, 255, 0, 0.25);
  color: var(--primary-accent);
  box-shadow: 0 0 20px rgba(140, 255, 0, 0.25);
}

.glow-green:hover .product-icon-box {
  background: rgba(140, 255, 0, 0.15);
  box-shadow: 0 0 25px rgba(140, 255, 0, 0.4);
}

.glow-green-cyan .product-icon-box {
  background: linear-gradient(135deg, rgba(140, 255, 0, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: #00F0FF;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}

.glow-green-cyan:hover .product-icon-box {
  background: linear-gradient(135deg, rgba(140, 255, 0, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
}

.glow-cyan .product-icon-box {
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.25);
  color: var(--secondary-accent-alt);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.25);
}

.glow-cyan:hover .product-icon-box {
  background: rgba(0, 217, 255, 0.15);
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.4);
}

.glow-purple .product-icon-box {
  background: rgba(138, 92, 255, 0.08);
  border: 1px solid rgba(138, 92, 255, 0.25);
  color: #8A5CFF;
  box-shadow: 0 0 20px rgba(138, 92, 255, 0.25);
}

.glow-purple:hover .product-icon-box {
  background: rgba(138, 92, 255, 0.15);
  box-shadow: 0 0 25px rgba(138, 92, 255, 0.4);
}

/* Status Badges with Pulse Dots */
.product-badge-live,
.product-badge-coming,
.product-badge-future,
.product-badge-review {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}

.product-badge-live {
  background: rgba(140, 255, 0, 0.15);
  color: var(--primary-accent);
  border: 1px solid rgba(140, 255, 0, 0.6);
  box-shadow: 0 0 10px rgba(140, 255, 0, 0.2);
}

.product-badge-live::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-accent);
  box-shadow: 0 0 6px var(--primary-accent);
  animation: status-pulse-green 2s infinite;
}

.product-badge-coming {
  background: rgba(0, 240, 255, 0.08);
  color: var(--secondary-accent-alt);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.product-badge-coming::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary-accent-alt);
  box-shadow: 0 0 6px var(--secondary-accent-alt);
  animation: status-pulse-cyan 2s infinite;
}

.product-badge-future {
  background: rgba(138, 92, 255, 0.08);
  color: #8A5CFF;
  border: 1px solid rgba(138, 92, 255, 0.2);
}

.product-badge-future::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8A5CFF;
  box-shadow: 0 0 6px #8A5CFF;
  animation: status-pulse-purple 2s infinite;
}

.product-badge-review {
  background: rgba(255, 179, 0, 0.05);
  color: #FFB300;
  border: 1px solid rgba(255, 179, 0, 0.3);
  opacity: 0.9;
}

.product-badge-review::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFB300;
}

@keyframes status-pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(140, 255, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(140, 255, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(140, 255, 0, 0); }
}

@keyframes status-pulse-cyan {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(0, 240, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

@keyframes status-pulse-purple {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(138, 92, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(138, 92, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(138, 92, 255, 0); }
}

/* Card Body & Typography */
.product-card-body {
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.product-category {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.category-green {
  color: var(--primary-accent);
}

.category-green-cyan {
  background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-cyan {
  color: var(--secondary-accent-alt);
}

.category-purple {
  color: #8A5CFF;
}

.product-description {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-body-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Dedicated Footer Section Separated by Divider Line */
.product-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  margin-top: 1rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.product-card .btn-secondary {
  width: 100%;
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card .btn-secondary svg {
  transition: transform 0.3s ease;
}

.product-card .btn-secondary:hover svg {
  transform: translateX(4px);
}

/* Prominent button hover glows */
.product-card.glow-green .btn-secondary:hover {
  border-color: var(--primary-accent);
  background: rgba(140, 255, 0, 0.04);
  box-shadow: 0 15px 40px rgba(140, 255, 0, 0.35);
}

.product-card.glow-green-cyan .btn-secondary:hover {
  border-color: var(--secondary-accent-alt);
  background: rgba(0, 240, 255, 0.04);
  box-shadow: 0 15px 40px rgba(0, 240, 255, 0.35);
}

.product-card.glow-cyan .btn-secondary:hover {
  border-color: var(--secondary-accent-alt);
  background: rgba(0, 240, 255, 0.04);
  box-shadow: 0 15px 40px rgba(0, 240, 255, 0.35);
}

.product-card.glow-purple .btn-secondary:hover {
  border-color: #8A5CFF;
  background: rgba(138, 92, 255, 0.04);
  box-shadow: 0 15px 40px rgba(138, 92, 255, 0.35);
}

/* Featured Card Layout (PSP Portfolio) */
.featured-product-card {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  padding: 2rem !important;
  margin-bottom: 2rem;
  align-items: stretch;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

/* Premium Featured Card Background Layer */
.featured-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 15% 20%, rgba(140, 255, 0, 0.03) 0%, transparent 40%),
              radial-gradient(circle at 85% 80%, rgba(0, 240, 255, 0.03) 0%, transparent 40%),
              linear-gradient(135deg, rgba(255,255,255,0.01) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.01) 50%, rgba(255,255,255,0.01) 75%, transparent 75%, transparent);
  background-size: 100% 100%, 100% 100%, 8px 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.featured-product-details, .featured-mockup-preview {
  position: relative;
  z-index: 1;
}

.featured-product-details {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-mockup-preview {
  flex: 0 0 56%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.featured-product-card:hover .featured-mockup-preview {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0, 240, 255, 0.15), 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* --- Project Specific Logo & Card Motif Utilities --- */

.logo-psp {
  max-width: 64px;
  max-height: 56px;
  object-fit: contain;
}

.logo-savings {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}

.logo-trendbull {
  max-width: 62px;
  max-height: 58px;
  object-fit: contain;
}

.logo-ai-trading {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Card Top Glows */
.top-glow-savings {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100px;
  background: radial-gradient(100% 100% at 50% 0%, rgba(140, 255, 0, 0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.top-glow-trendbull {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100px;
  background: radial-gradient(100% 100% at 50% 0%, rgba(0, 217, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.top-glow-aitrading {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100px;
  background: radial-gradient(100% 100% at 50% 0%, rgba(138, 92, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Card Motifs */
.motif-savings {
  position: absolute;
  bottom: 10%; right: 10%;
  width: 80px; height: 80px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(var(--primary-accent) 1px, transparent 1px);
  background-size: 10px 10px;
}
.motif-trendbull {
  position: absolute;
  bottom: 10%; right: 5%;
  width: 100px; height: 80px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  border-bottom: 2px solid #00F0FF;
  border-left: 2px solid #00F0FF;
}
.motif-aitrading {
  position: absolute;
  bottom: 5%; right: 10%;
  width: 100px; height: 100px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(45deg, #8A5CFF 25%, transparent 25%, transparent 75%, #8A5CFF 75%, #8A5CFF), linear-gradient(45deg, #8A5CFF 25%, transparent 25%, transparent 75%, #8A5CFF 75%, #8A5CFF);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

/* Development Footer */
.development-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

.development-footer .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8A5CFF;
  box-shadow: 0 0 6px #8A5CFF;
  animation: status-pulse-purple 2s infinite;
}

.development-footer .progress-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.development-footer .progress-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; height: 100%;
  width: 30%;
  background: linear-gradient(90deg, transparent, #8A5CFF);
  animation: loading-bar 2s infinite ease-in-out;
}

@keyframes loading-bar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

.mockup-header {
  height: 36px;
  background: rgba(10, 10, 10, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  position: relative;
}

.mockup-dots {
  display: flex;
  gap: 6px;
  position: absolute;
  left: 1rem;
}

.mockup-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.mockup-address-bar {
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.2rem 2.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.03em;
}

.mockup-content {
  flex-grow: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(5, 5, 5, 0.6) 100%);
  position: relative;
  overflow: hidden;
}

.mockup-hero {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.mockup-logo-symbol {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.mockup-text-line {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.mockup-text-line.short {
  width: 45%;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.mockup-text-line.long {
  width: 85%;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: auto;
}

.mockup-grid-item {
  height: 60px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.mockup-grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-accent), transparent);
  opacity: 0.5;
}

.mockup-grid.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* About Page Hero Redesign */
.about-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.about-hero-glow {
  filter: drop-shadow(0 0 25px rgba(140, 255, 0, 0.45));
  display: inline-block;
}

.about-hero-line {
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140, 255, 0, 0.8), transparent);
  margin: 1.5rem auto 2.75rem auto;
  box-shadow: 0 0 10px rgba(140, 255, 0, 0.5);
  animation: pulse-glow 3s infinite alternate;
}

.about-hero-desc {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@keyframes pulse-glow {
  0% { opacity: 0.4; filter: blur(0px); }
  100% { opacity: 1; filter: blur(1px); }
}

.mockup-grid-item:nth-child(2)::before {
  background: linear-gradient(90deg, var(--secondary-accent-alt), transparent);
}

.mockup-grid-item:nth-child(3)::before {
  background: linear-gradient(90deg, #8A5CFF, transparent);
}

/* Tech Stack Chips */
.tech-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.tech-chip {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.featured-product-card:hover .tech-chip {
  border-color: rgba(0, 240, 255, 0.25);
  color: var(--text-primary);
}

.product-card.glow-green:hover .tech-chip {
  border-color: rgba(140, 255, 0, 0.25);
  color: var(--text-primary);
}

.product-card.glow-cyan:hover .tech-chip {
  border-color: rgba(0, 217, 255, 0.25);
  color: var(--text-primary);
}

.product-card.glow-purple:hover .tech-chip {
  border-color: rgba(138, 92, 255, 0.25);
  color: var(--text-primary);
}

/* Coming Soon Muted Visual Hierarchy */
.card-muted {
  opacity: 0.65;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.card-muted:hover {
  opacity: 1 !important;
}

/* 3-Column Layout Grid */
.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

/* Responsive Media Queries for Products Showcase */
@media screen and (max-width: 1024px) {
  .featured-product-card {
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem !important;
  }
  .featured-product-details {
    flex: 1;
  }
  .featured-mockup-preview {
    flex: 1;
    min-height: 280px;
  }
  .products-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .products-grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .featured-product-card {
    padding: 1.5rem !important;
  }
  .mockup-address-bar {
    padding: 0.2rem 1.5rem;
  }
}

/* Slightly widen the right-side card grid in About section */
@media screen and (min-width: 1025px) {
  .about-grid {
    grid-template-columns: 0.95fr 1.05fr !important; /* Slightly increased left text container width */
  }
}

/* ==========================================================================
   Global Alternating Section Backgrounds
   ========================================================================== */

.section-transparent {
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
}

.section-masked {
  background: linear-gradient(to bottom, rgba(3, 7, 8, 0.1) 0%, rgba(3, 7, 8, 0.55) 36px, rgba(3, 7, 8, 0.55) calc(100% - 36px), rgba(3, 7, 8, 0.1) 100%) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  border-top: 1px solid rgba(120, 255, 80, 0.05) !important;
  border-bottom: 1px solid rgba(120, 255, 80, 0.05) !important;
  position: relative;
  z-index: 2;
}

/* === GLOBAL SECTION TRANSPARENCY OVERRIDES === */
.section, .products-showcase-section, .highlights-section, footer, .footer,
section[id], footer {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

.section::before, .section::after,
.products-showcase-section::before, .products-showcase-section::after,
.highlights-section::before, .highlights-section::after,
footer::before, footer::after,
section[id]::before, section[id]::after {
    background: none !important;
    background-image: none !important;
    opacity: 0 !important;
    box-shadow: none !important;
}

.glow-container,
.ambient-glow,
.about-glow-container,
.about-glow,
.grid-ambient-glow,
.products-ambient-glow,
.section-glow,
.radial-field {
    display: none !important;
    opacity: 0 !important;
    background: none !important;
}




/* === FINAL SECTION DIVIDERS === */
.section, .products-showcase-section, footer, .footer, section[id] {
    border-top: 1px solid rgba(255, 255, 255, 0.045) !important;
}

/* Hero should not have a top border */
#hero {
    border-top: none !important;
}



/* Very subtle local cyan/purple atmosphere for Products */
section#featured-products::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: -1 !important;
    background: radial-gradient(circle at 50% 55%, rgba(40, 210, 220, 0.025), transparent 42%) !important;
    opacity: 1 !important;
}






/* === FINAL ALTERNATING SECTION OVERLAYS === */
.section-masked, .section-open {
    position: relative !important;
    z-index: 1 !important;
}

/* Remove old flat borders, we will use a premium gradient divider */
.section-masked {
    border-top: none !important;
    border-bottom: none !important;
}

/* The dark background for masked sections */
section.section-masked[id]::before, footer.section-masked::before, .section-masked::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: #0c0e11 !important;
    background-color: #0c0e11 !important;
    background-image: none !important;
    pointer-events: none !important;
    z-index: -1 !important;
    opacity: 1 !important;
    display: block !important;
    /* Subtle inner shadow for elevation */
    box-shadow: inset 0 20px 40px -20px rgba(0,0,0,0.8), inset 0 -20px 40px -20px rgba(0,0,0,0.8) !important;
}

/* Add inner shadow to open sections as well to separate them from masked ones */
section.section-open[id]::before, .section-open::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
    opacity: 1 !important;
    display: block !important;
    box-shadow: inset 0 20px 40px -20px rgba(0,0,0,0.8), inset 0 -20px 40px -20px rgba(0,0,0,0.8) !important;
}

#hero::before {
    display: none !important;
}

/* === PROFESSIONAL SECTION SEPARATORS === */
/* Gradient divider line at the top of every section (except Hero) */
section[id]::after, footer::after, .section-masked::after, .section-open::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 10% !important;
    width: 80% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent) !important;
    background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent) !important;
    z-index: 5 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    display: block !important;
    box-shadow: none !important;
}

/* No top divider for hero */
#hero::after {
    display: none !important;
}


/* === FOOTER PURE BLACK OVERRIDE === */
body footer.section-masked::before, body footer::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: #000000 !important;
    background-color: #000000 !important;
    background-image: none !important;
    opacity: 1 !important;
    display: block !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

body footer, body footer.section-masked {
    background: transparent !important;
    background-color: transparent !important;
}

/* === PREMIUM LOCALIZED GLOWS (INSIDE MASKED SECTIONS) === */

.section-glow-layer {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  display: block !important;
  opacity: 1 !important;
  background: transparent !important;
}

/* ABOUT SECTION SPECIFIC GLOWS */
.about-glows::before {
  content: "" !important;
  position: absolute !important;
  width: 520px !important;
  height: 520px !important;
  left: 12% !important;
  top: 28% !important;
  background: radial-gradient(circle, rgba(123, 255, 40, 0.11) 0%, rgba(123, 255, 40, 0.045) 38%, transparent 72%) !important;
  filter: blur(35px) !important;
  pointer-events: none !important;
  display: block !important;
  opacity: 1 !important;
}

.about-glows::after {
  content: "" !important;
  position: absolute !important;
  width: 620px !important;
  height: 520px !important;
  right: 10% !important;
  top: 20% !important;
  background: radial-gradient(circle at 35% 35%, rgba(0, 220, 255, 0.08), transparent 58%), radial-gradient(circle at 70% 65%, rgba(123, 255, 40, 0.07), transparent 58%) !important;
  filter: blur(40px) !important;
  pointer-events: none !important;
  display: block !important;
  opacity: 1 !important;
}

/* CARD ICON RESTORED GLOWS */
.icon-green {
  box-shadow: 0 0 18px rgba(123, 255, 40, 0.18), 0 0 40px rgba(123, 255, 40, 0.07) !important;
}
.icon-cyan {
  box-shadow: 0 0 18px rgba(0, 220, 255, 0.16), 0 0 40px rgba(0, 220, 255, 0.06) !important;
}

/* DESKTOP HOVER AMBIENT GLOW FOR CARDS */
@media (min-width: 992px) {
  .about-card.glow-green:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.30), 0 0 35px rgba(123,255,40,0.07) !important;
  }
  .about-card.glow-cyan:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.30), 0 0 35px rgba(0,220,255,0.06) !important;
  }
  .about-card.glow-purple:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.30), 0 0 35px rgba(138,92,255,0.06) !important;
  }
}

/* Mission & Vision Section Specific Redesign */
.mission-vision-section .premium-glass {
  border-radius: 32px !important;
  background: rgba(10, 15, 20, 0.4) !important;
  border: 1px solid rgba(0, 220, 255, 0.06) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.08), 0 0 25px rgba(0, 220, 255, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mission-vision-section .premium-glass:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(0, 220, 255, 0.15) !important;
  background: rgba(15, 22, 30, 0.5) !important;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.1), 0 0 35px rgba(0, 220, 255, 0.08) !important;
}

.mission-vision-section .premium-glass .icon-wrapper {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 12px rgba(140, 255, 47, 0.15)) drop-shadow(0 0 5px rgba(0, 220, 255, 0.4));
  display: inline-block;
}

.mission-vision-section .premium-glass:hover .icon-wrapper {
  transform: translateY(-3px);
  filter: drop-shadow(0 0 15px rgba(140, 255, 47, 0.25)) drop-shadow(0 0 8px rgba(0, 220, 255, 0.6));
}

/* ==========================================================================
   Founder Section Hologram Styles
   ========================================================================== */

/* ==========================================================================
   Advanced Founder Frame & Jarvis Projection
   ========================================================================== */

.founder-hologram-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  margin-right: -30px;
}

@keyframes float-frame {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.hologram-aura {
  position: absolute;
  top: 50%; left: 50%;
  width: 70%; height: 70%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 220, 255, 0.10) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  animation: breath-aura 8s ease-in-out infinite;
}

@keyframes breath-aura {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.founder-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 910px;
  display: flex;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
  mask-image: linear-gradient(to top, transparent 0%, black 15%, black 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%, black 100%);
}

@keyframes portrait-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.01); }
}

.founder-img {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 95vh;
  mix-blend-mode: screen;
  filter: contrast(1.08) brightness(1.06) drop-shadow(0 0 18px rgba(0, 220, 255, 0.15));
  animation: portrait-glow 7s ease-in-out infinite;
}

@keyframes portrait-glow {
  0%, 100% { filter: contrast(1.08) brightness(1.06) drop-shadow(0 0 15px rgba(0, 220, 255, 0.1)); }
  50% { filter: contrast(1.08) brightness(1.06) drop-shadow(0 0 22px rgba(0, 220, 255, 0.2)); }
}

.glass-sweep {
  position: absolute;
  top: 0; left: -150%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: sweep-motion 14s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes sweep-motion {
  0%, 70% { left: -150%; }
  100% { left: 200%; }
}

.subtle-particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 4;
}

.s-dot {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  opacity: 0;
  animation: subtle-float-fade 8s ease-in-out infinite;
}

.cyan-dot { background: rgba(0, 220, 255, 0.6); box-shadow: 0 0 6px rgba(0,220,255,0.8); }
.green-dot { background: rgba(140, 255, 0, 0.6); box-shadow: 0 0 6px rgba(140,255,0,0.8); }

@keyframes subtle-float-fade {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  50% { transform: translateY(-40px) scale(1.2); opacity: 0.35; }
  100% { transform: translateY(-80px) scale(0.8); opacity: 0; }
}
/* Minimal Hologram Effects */
.minimal-light-beams {
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 30%;
  background: linear-gradient(to top, rgba(0, 220, 255, 0.2) 0%, transparent 100%);
  mask-image: linear-gradient(to top, black 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 80%);
  z-index: 3;
  pointer-events: none;
  animation: pulse-beams 4s ease-in-out infinite alternate;
}
@keyframes pulse-beams {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.minimal-particles {
  position: absolute;
  bottom: 5%; left: 0; width: 100%; height: 50%;
  z-index: 3;
  pointer-events: none;
}
.m-dot {
  position: absolute;
  bottom: 0;
  width: 3px; height: 3px;
  background: rgba(0, 220, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 220, 255, 0.8);
  animation: float-m-dot 6s linear infinite;
  opacity: 0;
}
@keyframes float-m-dot {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 0.35; }
  80% { opacity: 0.35; }
  100% { transform: translateY(-100px); opacity: 0; }
}

.minimal-platform {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotateX(75deg);
  width: 200px;
  height: 200px;
  z-index: 1;
  animation: platform-breathe 6s ease-in-out infinite;
}
@keyframes platform-breathe {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) rotateX(75deg) scale(0.98); }
  50% { opacity: 0.8; transform: translateX(-50%) rotateX(75deg) scale(1.02); }
}
.minimal-ring {
  display: none;
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0, 220, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 220, 255, 0.1), inset 0 0 10px rgba(0, 220, 255, 0.1);
  animation: spin-minimal 15s linear infinite;
}
.minimal-ring::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%; width: 20px; height: 2px;
  background: rgba(0, 220, 255, 0.8);
  box-shadow: 0 0 10px #00dcff;
}
.minimal-core {
  position: absolute;
  top: 50%; left: 50%; width: 40%; height: 40%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 220, 255, 0.38) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulse-minimal-core 3s ease-in-out infinite alternate;
}
@keyframes spin-minimal {
  100% { transform: rotateZ(360deg); }
}
@keyframes pulse-minimal-core {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.platform-particles {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 200px;
  z-index: 3;
  pointer-events: none;
}

.p-dot {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 3px;
  background: #00dcff;
  border-radius: 50%;
  box-shadow: 0 0 8px #00dcff;
  opacity: 0;
  animation: float-particle 3s linear infinite;
}

@keyframes scan-vertical {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-300px); opacity: 0; }
}

@keyframes pulse-ring {
  0% { transform: rotateX(75deg) scale(0.95); border-color: rgba(0, 220, 255, 0.4); }
  100% { transform: rotateX(75deg) scale(1.05); border-color: rgba(0, 220, 255, 0.8); }
}

@keyframes pulse-core {
  0% { opacity: 0.5; }
  100% { opacity: 1; filter: blur(8px); }
}

@keyframes float-particle {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 0.35; }
  80% { opacity: 0.35; }
  100% { transform: translateY(-150px); opacity: 0; }
}

/* ==========================================================================
   Core Pillars Section Redesign
   ========================================================================== */

.pillar-card {
  padding: 2.5rem 2rem !important;
  text-align: center;
  transition: all 0.4s ease !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(0, 220, 255, 0.25) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 220, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.glass-card.glow-green.pillar-card:hover {
  border-color: rgba(140, 255, 0, 0.25) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(140, 255, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.glass-card.glow-purple.pillar-card:hover {
  border-color: rgba(138, 92, 255, 0.25) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(138, 92, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.glass-card.glow-cyan.pillar-card:hover {
  border-color: rgba(0, 220, 255, 0.25) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 220, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.pillar-icon {
  margin-bottom: 1.25rem;
  display: inline-block;
  position: relative;
  z-index: 2;
}

/* Base icon glow behind */
.pillar-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(15px);
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.glow-green .pillar-icon {
  color: var(--primary-accent);
  filter: drop-shadow(0 0 12px rgba(140, 255, 0, 0.6));
}

.glow-green .pillar-icon::after {
  background: var(--primary-accent);
}

.glow-cyan .pillar-icon {
  color: var(--primary-accent-alt);
  filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.6));
}

.glow-cyan .pillar-icon::after {
  background: var(--primary-accent-alt);
}

.glow-purple .pillar-icon {
  color: var(--secondary-accent-alt);
  filter: drop-shadow(0 0 12px rgba(138, 92, 255, 0.6));
}

.glow-purple .pillar-icon::after {
  background: var(--secondary-accent-alt);
}

.pillar-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--text-secondary);
  flex-grow: 1;
}

/* ==========================================================================
   Evolution & Roadmap Redesign
   ========================================================================== */

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
}

.timeline-step {
  display: flex;
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-step.step-right {
  justify-content: flex-end;
  margin-left: 50%;
  padding-left: 3.5rem;
}

.timeline-step.step-left {
  justify-content: flex-start;
  margin-right: 50%;
  padding-right: 3.5rem;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  top: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-accent);
  border: 4px solid var(--card-bg);
  box-shadow: 0 0 15px var(--primary-accent);
  animation: pulse-dot 2.5s infinite alternate;
  z-index: 2;
}

.step-right .timeline-dot {
  left: 0;
  transform: translateX(-50%);
}

.step-left .timeline-dot {
  right: 0;
  transform: translateX(50%);
}

.timeline-dot.dot-cyan {
  background: var(--primary-accent-alt);
  box-shadow: 0 0 15px var(--primary-accent-alt);
}

.timeline-dot.dot-purple {
  background: var(--secondary-accent-alt);
  box-shadow: 0 0 15px var(--secondary-accent-alt);
}

.active-milestone .timeline-dot {
  background: rgba(140, 255, 0, 1);
  border-color: rgba(140, 255, 0, 0.2);
  box-shadow: 0 0 25px rgba(140, 255, 0, 0.8), 0 0 45px rgba(140, 255, 0, 0.4);
  animation: pulse-dot-active 2s infinite alternate;
}

.timeline-card {
  width: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 2.5rem !important;
  border-radius: 20px !important;
  transition: all 0.4s ease !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

.timeline-card:hover {
  transform: translateY(-5px) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.timeline-date {
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.glow-green .timeline-date { color: var(--primary-accent); }
.glow-cyan .timeline-date { color: var(--primary-accent-alt); }
.glow-purple .timeline-date { color: var(--secondary-accent-alt); }

.timeline-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.timeline-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--text-secondary);
}

@keyframes pulse-dot {
  0% { transform: translateX(var(--tx, -50%)) scale(0.9); opacity: 0.8; }
  100% { transform: translateX(var(--tx, -50%)) scale(1.1); opacity: 1; }
}

@keyframes pulse-dot-active {
  0% { transform: translateX(var(--tx, -50%)) scale(1); opacity: 0.8; }
  100% { transform: translateX(var(--tx, -50%)) scale(1.3); opacity: 1; }
}

.step-left .timeline-dot { --tx: 50%; }
.step-right .timeline-dot { --tx: -50%; }

/* ==========================================================================
   Premium CTA Section Redesign
   ========================================================================== */

.cta-glass-container {
  border: 1px solid rgba(140, 255, 0, 0.15) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(140, 255, 0, 0.05) !important;
  background: rgba(10, 10, 10, 0.6) !important;
  backdrop-filter: blur(20px) !important;
}

.cta-button-wrapper {
  position: relative;
  z-index: 2;
}

.cta-btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(140, 255, 0, 0.4) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.8;
  transition: all 0.4s ease;
  pointer-events: none;
}

.cta-button-wrapper:hover .cta-btn-glow {
  opacity: 1;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(140, 255, 0, 0.6) 0%, transparent 70%);
}

.cta-btn-premium {
  padding: 1.25rem 2.5rem !important;
  font-size: 1.1rem !important;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(140, 255, 0, 0.3) !important;
  transition: all 0.4s ease !important;
}

.cta-btn-premium:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 30px rgba(140, 255, 0, 0.5) !important;
}

.cta-particles .p-dot {
  background: rgba(140, 255, 0, 0.8);
  box-shadow: 0 0 10px rgba(140, 255, 0, 0.8);
}

/* ==========================================================================
   Footer Social Hover Glows
   ========================================================================== */

.social-hover-glow {
  transition: all 0.3s ease !important;
}

.social-hover-glow.linkedin:hover {
  filter: drop-shadow(0 0 12px rgba(10, 102, 194, 0.8));
  transform: translateY(-4px);
}

.social-hover-glow.instagram:hover {
  filter: drop-shadow(0 0 12px rgba(225, 48, 108, 0.8));
  transform: translateY(-4px);
}

.social-hover-glow.facebook:hover {
  filter: drop-shadow(0 0 12px rgba(24, 119, 242, 0.8));
  transform: translateY(-4px);
}

/* ==========================================================================
   Founder Refinements
   ========================================================================== */

.founder-feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(61, 220, 255, 0.15);
  border-radius: 18px;
  padding: 0.55rem 0.75rem;
  text-align: left;
  box-shadow: inset 0 0 12px rgba(0, 220, 255, 0.04), 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 15px rgba(0, 220, 255, 0.06), 0 6px 25px rgba(0, 0, 0, 0.15);
}

.founder-feature-card .feature-icon {
  color: var(--primary-accent);
  margin-bottom: 0.8rem;
  transform: scale(0.85);
  transform-origin: left;
}

.founder-feature-card h4 {
  margin: 0 0 0.4rem 0;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.founder-feature-card p {
  margin: 0;
  font-size: calc(0.75rem - 1px);
  color: var(--text-secondary);
  line-height: 1.5;
}

.quote-card-glass {
  position: relative;
  background: rgba(15, 20, 25, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-left: 2px solid rgba(0, 220, 255, 0.6);
  border-radius: 4px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  overflow: hidden;
  z-index: 1;
  box-shadow: -2px 0 10px rgba(0, 220, 255, 0.1);
}

.quote-card-glass:hover {
  transform: translateY(-3px);
  box-shadow: -2px 0 15px rgba(0, 220, 255, 0.2);
}

.quote-card-glass::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 6.5rem;
  color: var(--secondary-accent-alt);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.quote-card-glass p {
  margin: 0;
  font-size: calc(1.25rem - 1px);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.founder-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
  transition: all 0.25s ease;
}

.founder-social-icon:hover {
  opacity: 1;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(61, 220, 255, 0.4);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(61, 220, 255, 0.25);
}

/* ==========================================================================
   Founder Expertise Cards
   ========================================================================== */

.founder-expertise-card {
  width: 155px;
  height: 200px;
  padding: 1.25rem 1rem !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
  position: relative;
}

.founder-expertise-card:hover {
  transform: translateY(-3px) !important;
}

.founder-expertise-icon {
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
  color: var(--primary-accent);
}

.glow-green .founder-expertise-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--primary-accent);
  filter: blur(15px);
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}

.founder-expertise-card h4 {
  font-size: 18px;
  margin-bottom: 0.35rem;
  line-height: 1.2;
  color: var(--text-primary);
  font-weight: 500;
}

.founder-expertise-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}
