/* Micro Design System - Webflow Compatible */

:root {
  --bg: #0e0e0e;
  --bg-alt: #1a1a1a;
  --text: #ffffff;
  --muted: #b3b3b3;
  --accent: #9BFB0A;

  /* Bar Colors */
  --bar-1-color: #9BFB0A;
  --bar-2-color: #F9B800;
  --bar-3-color: #FF3427;

  /* Gradient Stack (Modern V2) */
  --grad-communities: linear-gradient(90deg, #4FFBDB 0%, #FFD748 100%);
  --grad-creators: linear-gradient(90deg, #9F85FF 0%, #FF6B6B 100%);
  --grad-distribution: linear-gradient(90deg, #4DE7FF 0%, #D88AFF 100%);

  /* Bar Sizes - Mobile */
  --bar-1-width: 70vw;
  --bar-2-width: 50vw;
  --bar-3-width: 60vw;

  /* Bar Positions - Mobile */
  --bar-1-margin-left: 0;
  --bar-2-margin-left: 25vw;
  --bar-3-margin-left: 40vw;

  /* Bar Overlap */
  --bar-1-margin-top: 0;
  --bar-overlap: -5px;
  --bar-overlap-desktop: -12px;
  /* Increase negative margin for tighter stack */

  /* Bar Z-index */
  --bar-1-z-index: 1;
  --bar-2-z-index: 2;
  --bar-3-z-index: 3;

  /* Bar Text Colors */
  --bar-1-text-color: #ffffff;
  --bar-2-text-color: #ffffff;
  --bar-3-text-color: #ffffff;

  /* Bar Sizes - Desktop */
  --bar-1-width-desktop: 60vw;
}

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

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* Headings use Onest */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 600;
}

/* Body text and subheadings use Inter */
body,
p,
.subhead,
nav,
.button,
.form-group label,
.form-group input,
.form-group textarea {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Responsive Helper Utilities */
.mobile-only {
  display: none !important;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section Base */
.section {
  padding: 3rem 0;
}


/* Header & Navigation */
header {
  background-color: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 24px;
  width: auto;
  z-index: 101;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.hamburger:hover span {
  background-color: var(--accent);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
  background-color: var(--accent);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
  background-color: var(--accent);
}

nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100vh;
  background-color: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6rem 2.5rem 2rem;
  transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 100;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}

nav.active {
  left: 0;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  padding: 0;
  margin: 0;
}

nav li {
  width: 100%;
}

nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: 'Onest', sans-serif;
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  position: relative;
  width: 100%;
  text-align: center;
}

nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background-color: var(--accent);
  border-radius: 0 2px 2px 0;
  transition: height 0.3s ease;
}

nav a:hover {
  color: #ffffff;
  background-color: rgba(155, 251, 10, 0.08);
  padding-left: 1rem;
  padding-right: 1rem;
}

nav a:hover::before {
  height: 60%;
}

nav a.active {
  color: #ffffff;
  background-color: rgba(155, 251, 10, 0.15);
  padding-left: 1rem;
  padding-right: 1rem;
}

nav a.active::before {
  height: 60%;
  background-color: var(--accent);
}

/* Overlay when menu is open */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section Redesign */
.hero {
  --green: #A3FF12;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url('../assets/Hero Background/hero-bg.jpg') no-repeat center center / cover;
}

.hero .hero-content {
  position: relative;
  z-index: 5;
  padding-left: 140px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 00px;
}

.hero-title {
  color: white;
  font-size: clamp(90px, 8vw, 160px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -5px;
  font-family: 'Inter', sans-serif;
  text-align: left;
  margin: 0;
}

.hero-title span {
  display: block;
  transition: color 0.3s ease;
}

.hero-title span:nth-child(1):hover {
  color: #0046d5;
  /* Royal Blue */
}

.hero-title span:nth-child(2):hover {
  color: #7000ff;
  /* Electric Purple */
}

.hero-title span:nth-child(3):hover {
  color: #ff3c00;
  /* Vibrant Orange-Red */
}

/* Custom Cursor Follower */
.custom-cursor {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  /* On top of general page elements globally */
  transform: translate(-50%, -50%);
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  mix-blend-mode: screen;
  /* Keeps background image and text perfectly readable */
  transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.custom-cursor.hero-active {
  width: 160px;
  height: 160px;
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.4);
  backdrop-filter: grayscale(100%) brightness(5);
  -webkit-backdrop-filter: grayscale(100%) brightness(5);
  mix-blend-mode: color-dodge;
  /* Luminous exposure that forces underlying colorful pixels to turn white */
  z-index: 4;
  /* Dynamic drop behind white hero text when spotlight is active */
}

/* Global hover highlights for all links/buttons on the page */
.custom-cursor.hover-interactive {
  width: 60px;
  height: 60px;
  border-color: transparent;
  background-color: rgba(155, 251, 10, 0.25);
  /* Toxic Green */
  box-shadow: 0 0 25px rgba(155, 251, 10, 0.5);
  mix-blend-mode: screen !important;
}

/* Custom cursor text hover states for Hero Pop-Color titles */
.custom-cursor.active {
  width: 200px;
  height: 200px;
  border-color: transparent;
  z-index: 4;
  /* Behind the white text container (z-index: 5) but on top of the background image */
}

.custom-cursor.hover-culture {
  background-color: rgba(0, 70, 213, 0.45) !important;
  box-shadow: 0 0 50px rgba(0, 70, 213, 0.7) !important;
  mix-blend-mode: screen !important;
}

.custom-cursor.hover-content {
  background-color: rgba(112, 0, 255, 0.45) !important;
  box-shadow: 0 0 50px rgba(112, 0, 255, 0.7) !important;
  mix-blend-mode: screen !important;
}

.custom-cursor.hover-distribution {
  background-color: rgba(255, 60, 0, 0.45) !important;
  box-shadow: 0 0 50px rgba(255, 60, 0, 0.7) !important;
  mix-blend-mode: screen !important;
}

/* Global text hover highlight */
.custom-cursor.hover-text {
  width: 40px;
  height: 40px;
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  mix-blend-mode: difference !important;
}

/* Split Section Stack Bars Cursor Hover Glows */
.custom-cursor.hover-stack-creators {
  background-color: rgba(176, 4, 36, 1) !important;
  /* Inverted Cyan-Teal #4ffbdb */
  box-shadow: 0 0 50px rgba(176, 4, 36, 0.7) !important;
  mix-blend-mode: difference !important;
  z-index: 9999 !important;
}

.custom-cursor.hover-stack-communities {
  background-color: rgba(96, 122, 0, 1) !important;
  /* Inverted Purple/Pink #9f85ff */
  box-shadow: 0 0 50px rgba(96, 122, 0, 0.7) !important;
  mix-blend-mode: difference !important;
  z-index: 9999 !important;
}

.custom-cursor.hover-stack-distribution {
  background-color: rgba(178, 24, 0, 1) !important;
  /* Inverted Light Blue #4de7ff */
  box-shadow: 0 0 50px rgba(178, 24, 0, 0.7) !important;
  mix-blend-mode: difference !important;
  z-index: 9999 !important;
}

/* Major Headings Pop-Color Hover Glows */
.custom-cursor.hover-heading-purple {
  background-color: rgba(143, 255, 0, 1) !important;
  /* Inverted Electric Purple #7000ff */
  box-shadow: 0 0 50px rgba(143, 255, 0, 0.7) !important;
  mix-blend-mode: difference !important;
  z-index: 9999 !important;
}

.custom-cursor.hover-heading-orange {
  background-color: rgba(0, 195, 255, 1) !important;
  /* Inverted Vibrant Orange-Red #ff3c00 */
  box-shadow: 0 0 50px rgba(0, 195, 255, 0.7) !important;
  mix-blend-mode: difference !important;
  z-index: 9999 !important;
}

.custom-cursor.hover-heading-cyan {
  background-color: rgba(178, 24, 0, 1) !important;
  /* Inverted Light Blue/Cyan #4de7ff */
  box-shadow: 0 0 50px rgba(178, 24, 0, 0.7) !important;
  mix-blend-mode: difference !important;
  z-index: 9999 !important;
}

.custom-cursor.hover-heading-blue {
  background-color: rgba(255, 185, 42, 1) !important;
  /* Inverted Royal Blue #0046d5 */
  box-shadow: 0 0 50px rgba(255, 185, 42, 0.7) !important;
  mix-blend-mode: difference !important;
  z-index: 9999 !important;
}

.custom-cursor.hover-heading-green {
  background-color: rgba(100, 4, 245, 1) !important;
  /* Inverted Toxic Green #9bfb0a */
  box-shadow: 0 0 50px rgba(100, 4, 245, 0.6) !important;
  mix-blend-mode: difference !important;
  z-index: 9999 !important;
}



/* Hide custom cursor on tablets and mobile screens */
@media (max-width: 1024px) {
  .custom-cursor {
    display: none !important;
  }
}

.hero .hero-cta {
  margin-top: -35px;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 34px;
  background-color: var(--green);
  color: black;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 20px;
  transition: .25s ease;
  font-family: 'Inter', sans-serif;
}

.hero .btn:hover {
  transform: translateY(-3px);
  opacity: 1;
}

/* Responsive */
@media(max-width: 1100px) {
  .hero {
    padding-top: 150px;
    align-items: center;
    background: url('../assets/Hero Background/hero-bg.jpg') no-repeat center center / cover;
  }

  .hero .hero-content {
    padding: 40px;
  }

  .hero-title {
    font-size: 72px;
  }
}

/* Mobile Hero Responsiveness */
@media (max-width: 768px) {
  .hero {
    min-height: 65vh;
  }

  .hero .hero-content {
    margin-top: -80px;
  }

  .hero .hero-cta {
    margin-top: 30px;
  }

  .hero-title {
    font-size: 64px;
  }
}





/* Split Section (Stack + Manifesto) - Modern SaaS Gradient Style */
.split-section {
  padding: 8rem 0 !important;
  background-color: #0e0e0e;
  overflow: hidden;
}

.intersection-heading {
  text-align: left;
  font-size: 3rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
  line-height: 1.2;
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 600;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 0;
}

/* LEFT COLUMN: Stack Column Wrapper */
.stack-column {
  display: flex;
  flex-direction: column;
}

/* LEFT COLUMN: Stack Container */
.split-section .stack-container {
  position: relative;
  margin: 0;
  align-items: flex-start;
  max-width: 100%;
  z-index: 5;
}

/* Stack Bars - Base Styles */
.split-section .stack-bar {
  font-size: 1.5rem;
  padding: 1rem 2rem;
  max-width: 450px;
  text-align: center;
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0e0e0e;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.split-section .stack-bar:hover {
  transform: scale(1.05) translateY(-5px);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

/* Individual Bar Positioning */
.bar-creators {
  background: var(--grad-communities);
  margin-right: 15%;
  z-index: 3;
}

.bar-communities {
  background: var(--grad-creators);
  margin-top: 12px;
  z-index: 2;
}

.bar-distribution {
  background: var(--grad-distribution);
  margin-top: 12px;
  z-index: 1;
}

/* ARROW POSITIONING */
.stack-arrow {
  position: absolute;
  /* Push it to the right of the stack */
  right: -30px;
  /* Align vertically to bridge Bar 1 and Bar 2 */
  top: 10px;
  width: 100px;
  height: 140px;
  z-index: 10;
  opacity: 0.9;
  pointer-events: none;
  /* Slight rotation to match the hand-drawn look */
  transform: rotate(-5deg);
}

.stack-arrow svg {
  width: 100%;
  height: 100%;
  /* Optional: Add a subtle drop shadow to pop against dark bg */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Left Arrow (between bar 2 and bar 3) */
.stack-arrow-left {
  right: auto;
  left: -100px;
  top: 110px;
  height: 100px;
}

/* RIGHT COLUMN: Manifesto Typography */
.manifesto-content {
  max-width: 500px;
}

.manifesto-heading {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.manifesto-subtext {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .split-section {
    padding: 4rem 0 !important;
  }

  .intersection-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .split-section .stack-container {
    align-items: center;
  }

  .split-section .stack-bar {
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-top: 1rem !important;
    font-size: 1.25rem;
    max-width: 100%;
  }

  .bar-creators {
    margin-right: 0;
    margin-top: 0;
  }

  .bar-communities {
    margin-top: 1rem;
  }

  .bar-distribution {
    margin-top: 1rem;
  }

  .stack-arrow {
    display: none !important;
  }

  .manifesto-content {
    margin: 0 auto;
  }

  .manifesto-heading {
    font-size: 2rem;
  }
}


/* Capabilities Section */
.capabilities {
  background-color: var(--bg-alt);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.bento-card {
  background-color: var(--bg);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.bento-card:hover {
  border-color: rgba(155, 251, 10, 0.3);
  transform: translateY(-5px);
}

.bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.bento-card .card-subtitle {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 500;
  margin-left: 0.5rem;
}

.bento-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Work Section */

/* CTA Section */
/* --- CTA SECTION (The Void Card) --- */
.cta {
  background-color: var(--bg-alt);
  text-align: center;
  padding: 4rem 0;
  margin-bottom: 0;
  position: relative;
}

.cta-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(155, 251, 10, 0.15);
  border-radius: 24px;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  border-radius: 24px;
  pointer-events: none;
  z-index: 0;
}

/* The Green Atmosphere Glow - Radial coverage centered at bottom */
.cta-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom, rgba(155, 251, 10, 0.18) 0%, rgba(155, 251, 10, 0.05) 50%, transparent 100%);
  filter: blur(40px);
  opacity: 0.95;
  pointer-events: none;
  border-radius: 24px;
  z-index: 1;
}

.cta-label {
  background: rgba(155, 251, 10, 0.05);
  color: #9BFB0A;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2.25rem;
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(155, 251, 10, 0.3);
  border-radius: 50px;
  position: relative;
  z-index: 3;
  font-family: 'Onest', sans-serif;
  box-shadow: 0 0 15px rgba(155, 251, 10, 0.1);
}

.cta-card h2 {
  font-family: 'Onest', sans-serif;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
  line-height: 1.15;
  position: relative;
  z-index: 3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-card h2 .text-white {
  color: #ffffff;
  font-size: inherit;
  font-weight: 800;
  display: inline;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 3;
}



.cta-sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.link-underline {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
}

.link-underline:hover {
  color: #9BFB0A;
}

/* Button */
.button {
  display: inline-block;
  padding: 0.875rem 2rem;
  min-height: 44px;
  min-width: 44px;
  background-color: var(--accent);
  color: var(--bg);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  touch-action: manipulation;
}

.button:hover {
  opacity: 0.9;
}

.button-secondary {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.button-secondary:hover {
  background-color: var(--text);
  color: var(--bg);
  opacity: 1;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.button-group .button {
  margin: 0;
}

/* Grid Utilities - Base styles for all grids */
.capabilities .grid,
.work .grid,
.distribution .grid,
.grid-2,
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.distribution .grid {
  margin-top: 2rem;
}

/* Form */
.form {
  max-width: 600px;
  margin: 0 auto;
}

/* Base form styles - overridden by contact-form styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  background-color: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Distribution Section */
.distribution {
  text-align: center;
  background-color: var(--bg-alt);
}

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

.distribution .stat {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* Who We Work With Section */
/* Footer */
/* --- FOOTER STYLES --- */
footer {
  background-color: var(--bg);
  padding: 0;
  margin-top: 0;
  position: relative;
}

/* The Rainbow Divider Line */
/* This reuses the exact gradients from your "Intersection Stack" */
.footer-gradient-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      #4FFBDB 0%,
      /* Teal (Communities) */
      #9F85FF 50%,
      /* Purple (Creators) */
      #4DE7FF 100%
      /* Cyan (Distribution) */
    );
  opacity: 0.6;
}

footer .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  /* Logo takes double space */
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 0.2rem;
  line-height: 1.5;
}

.footer-logo {
  height: 28px;
  /* Adjust based on your actual logo file */
  width: auto;
}

.footer-slogan {
  font-family: 'Onest', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.footer-nav h4,
.footer-social h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  font-family: 'Onest', sans-serif;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.1rem;
}

.footer-nav a,
.social-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
  display: block;
  font-size: 0.95rem;
}

.footer-nav a:hover,
.social-links a:hover {
  color: #9BFB0A;
  padding-left: 5px;
  /* Subtle movement on hover */
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  padding-left: 0 !important;
}

.social-links img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.15);
  opacity: 0.85;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-button {
  margin-bottom: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  text-align: center;
  display: inline-block;
}

.footer-button:hover svg {
  transform: translate(2px, -2px);
}

.footer-address {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: right;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  color: #444;
  font-size: 0.875rem;
}

/* Desktop Media Queries */
@media (min-width: 768px) {
  .logo {
    position: static;
    transform: none;
    height: 30px;
    margin-right: 0;
  }

  header .container {
    justify-content: center;
    gap: 3rem;
  }

  nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    box-shadow: none;
    background: transparent;
    border: none;
    backdrop-filter: none;
    overflow: visible;
  }

  nav ul {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
    margin: 0;
  }

  nav li {
    width: auto;
  }

  nav a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  nav a::before {
    display: none;
  }

  nav a:hover {
    color: #ffffff;
    background-color: rgba(155, 251, 10, 0.1);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  nav a.active {
    color: #ffffff;
    background-color: rgba(155, 251, 10, 0.15);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hamburger {
    display: none;
  }

  .menu-overlay {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }

  .hero-text {
    flex: none;
  }



  /* Grid layouts - Desktop */
  .capabilities .grid,
  .work .grid,
  .distribution .grid,
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Split section desktop - no overrides needed, base styles apply */

  .section {
    padding: 5rem 0;
  }

  .cta h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  /* Grid layouts - Large Desktop */
  .capabilities .grid,
  .distribution .grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* --- SECTION UTILITIES --- */
.section-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
  font-family: 'Onest', sans-serif;
  font-weight: 700;
}

/* --- CAPABILITIES (The Bento Grid) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.bento-card {
  background-color: #111;
  border: 1px solid #222;
  border-top: none;
  /* Remove top border - gradient shows instead */
  border-left: none;
  /* Remove left border - gradient shows instead */
  border-right: none;
  /* Remove right border - gradient shows instead */
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: visible;
  /* Allow glow to extend outside the box */
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: #333;
}

/* 1. THE SHARP BORDER LINE */
.bento-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: calc(50% + 2px);
  border: 3px solid transparent;
  border-bottom: none;
  border-radius: 20px 20px 0 0;

  /* FIX: Explicitly set origin and clip here */
  background-origin: border-box;
  background-clip: border-box;

  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
  pointer-events: none;
}

/* Top glow line */
.bento-card::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  height: 8px;
  background: var(--glow-gradient);
  filter: blur(10px);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
  border-radius: 16px 16px 0 0;
}

/* 2. THE AMBIENT GLOW (Wraps around sides only - top handled by ::before) */
.card-glow {
  position: absolute;
  top: 0;
  left: -4px;
  right: -4px;
  height: 50%;
  /* Goes down to middle of card */
  background: transparent;
  border-left: 4px solid var(--glow-color);
  border-right: 4px solid var(--glow-color);
  border-top: none;
  border-bottom: none;
  filter: blur(10px);
  /* Soft glow effect */
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

/* 3. ASSIGN COLORS PER CARD */
/* Diagonal gradients: Color on corner, fading towards opposite corner */

/* Strategy: Teal (left) → Yellow/Golden (right), fading down */
.card-strategy {
  --glow-color: #FFD748;
  --glow-gradient: linear-gradient(90deg, #4FFBDB 0%, #FFD748 100%);
}

.card-strategy::before {
  background-image:
    linear-gradient(to bottom right, #4FFBDB 0%, transparent 35%),
    linear-gradient(to bottom left, #FFD748 0%, transparent 35%);
}

/* Creativity: Purple (left) → Coral Red (right), fading down */
.card-creativity {
  --glow-color: #9F85FF;
  --glow-gradient: linear-gradient(90deg, #9F85FF 0%, #FF6B6B 100%);
}

.card-creativity::before {
  background-image:
    linear-gradient(to bottom right, #9F85FF 0%, transparent 35%),
    linear-gradient(to bottom left, #FF6B6B 0%, transparent 35%);
}

/* Impact: Cyan (left) → Violet (right), fading down */
.card-impact {
  --glow-color: #4DE7FF;
  --glow-gradient: linear-gradient(90deg, #4DE7FF 0%, #D88AFF 100%);
}

.card-impact::before {
  background-image:
    linear-gradient(to bottom right, #4DE7FF 0%, transparent 35%),
    linear-gradient(to bottom left, #D88AFF 0%, transparent 35%);
}

/* Ensure Text Sits ABOVE the Glow */
.bento-card h3,
.bento-card p {
  position: relative;
  z-index: 3;
}

.bento-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.card-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.25rem;
}

.bento-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- WHY BRANDS WORK WITH US SECTION --- */
.why-us {
  background-color: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.why-us-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-us-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  font-family: 'Onest', sans-serif;
  line-height: 1.2;
}

.why-us-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-card {
  background-color: var (--bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid transparent;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: visible;
  min-height: 200px;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.card-number {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  font-family: 'Onest', sans-serif;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.card-content {
  position: relative;
  z-index: 2;
  background: transparent;
}

.why-us-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Onest', sans-serif;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.why-us-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Card-specific left border accents */
.card-native {
  border-left-color: #4FFBDB;
}

.card-experience {
  border-left-color: #9F85FF;
}

.card-track {
  border-left-color: #4DE7FF;
}

.card-fullstack {
  border-left-color: #9BFB0A;
}

.card-fullstack h3 {
  color: #9BFB0A;
}

/* --- DISTRIBUTION (Data Dashboard) --- */
.distribution {
  padding: 6rem 0;
}

.dist-header {
  text-align: center;
  margin-bottom: 4rem;
}

.dist-header h2 {
  font-size: 3.5rem;
  color: #fff;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

/* New Stats Layout with Divider */
.stats-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Onest', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #9BFB0A;
}

.stat-item .stat-label {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.stats-divider {
  width: 3px;
  height: 160px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.15) 15%, rgba(255, 255, 255, 0.15) 85%, transparent 100%);
  flex-shrink: 0;
}

.stats-right {
  text-align: center;
  padding: 0 2rem;
}

.stat-number-large {
  font-family: 'Onest', sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label-large {
  font-size: 1.75rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Legacy stats-grid (keep for compatibility) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2x2 Grid */
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 200px;
}

/* Icon Stats (Facebook / X) */
.icon-stat {
  align-items: center;
  text-align: center;
}

.social-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

/* Large Numbers */
.stat-number {
  font-family: 'Onest', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #9BFB0A;
}

.gradient-text-1 {
  color: #9BFB0A;
}

.gradient-text-2 {
  color: #9BFB0A;
}

.stat-label {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
}

/* --- WORK GALLERY --- */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.work-card {
  background-color: #161616;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #222;
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: #444;
}

.work-image-container {
  width: 100%;
  height: 200px;
  background-color: #222;
  /* Placeholder color */
  overflow: hidden;
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-img {
  transform: scale(1.05);
}

.work-details {
  padding: 1.5rem;
}

.work-details h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.work-details p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .work-gallery {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .dist-header h2,
  .universe-header .section-heading {
    font-size: 2rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .mobile-only {
    display: inline !important;
  }

  .distribution {
    padding: 4rem 0;
  }

  .dist-header {
    margin-bottom: 2.5rem;
  }

  .stats-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .stats-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 15%, rgba(255, 255, 255, 0.15) 85%, transparent 100%);
    margin: 0 auto;
  }

  .stats-left {
    width: 100%;
    gap: 2rem;
  }

  .stats-right {
    padding: 0;
  }

  .stat-number-large {
    font-size: 4.5rem;
  }

  .stat-label-large {
    font-size: 1.35rem;
  }

  /* Why Us Section Mobile */
  .why-us-title {
    font-size: 2rem;
  }

  .why-us-subtitle {
    font-size: 1.125rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us-card {
    padding: 2.5rem 2rem;
    min-height: 180px;
  }

  .card-number {
    font-size: 4rem;
    top: -10px;
    left: 15px;
    color: rgba(255, 255, 255, 0.08);
  }

  .why-us-card h3 {
    font-size: 1.25rem;
  }

  .why-us-header {
    margin-bottom: 3rem;
  }


  /* CTA Section Mobile */
  .cta {
    padding: 3rem 0;
  }

  .cta-card {
    padding: 3.5rem 2rem;
    max-width: 100%;
    border-radius: 20px;
  }

  .cta-glow {
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .cta-card h2 {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .cta-card h2 .text-white {
    font-size: inherit;
  }

  .cta-label {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    /* Two columns for Explore and Connect */
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    /* Span full width */
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .stat-number {
    font-size: 3rem;
  }

  /* Stats layout mobile */
  .stats-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .stats-left {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
  }

  .stats-divider {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fff 20%, #fff 80%, transparent 100%);
  }

  .stat-number-large {
    font-size: 3rem;
  }

  .stat-label-large {
    font-size: 1rem;
  }
}

/* --- CONFIGURATION PANEL (Operating Model) --- */
.compatibility {
  background-color: var(--bg);
}

.model-intro {
  margin-bottom: 3rem;
  text-align: center;
}

.model-intro .section-heading {
  margin-bottom: 0.5rem;
}

.model-intro .section-sub {
  text-align: center;
  margin-top: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 1.25rem;
}

/* The Main "Window" Container */
.config-panel {
  background-color: #0a0a0a;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

/* The Window Header bar */
.config-header {
  background-color: #1a1a1a;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* The "Traffic Light" Dots */
.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span:nth-child(1) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff5f57;
  /* Red */
}

.window-dots span:nth-child(2) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffbd2e;
  /* Yellow */
}

.window-dots span:nth-child(3) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #28ca42;
  /* Green */
}

/* The Monospace Header Title */
.config-title {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #999;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 600;
}

/* The 2-Column Layout */
.config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2.5rem;
  gap: 3.5rem;
  /* Wide gap for breathing room */
}

/* Column Headers */
.col-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-green {
  color: #9BFB0A;
}

.text-muted {
  color: #888;
}

/* Status Indicators */
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* The Glowing Green Dot */
.status-dot.green {
  background-color: #9BFB0A;
  box-shadow: 0 0 8px rgba(155, 251, 10, 0.6);
}

.status-dot.grey {
  background-color: #444;
}

/* Individual Row Items */
.setting-item {
  display: flex;
  justify-content: space-between;
  /* Pushes toggle to right */
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #1a1a1a;
  /* Very subtle divider */
}

.setting-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Typography for Settings */
.setting-info h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-family: 'Onest', sans-serif;
}

.setting-info p {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
  max-width: 90%;
  line-height: 1.5;
}

/* Dimmed Style for "Deprecated" Column */
.dimmed .setting-info h4 {
  color: #999;
}

.dimmed .setting-info p {
  color: #666;
}

/* --- CUSTOM TOGGLE SWITCHES --- */
.toggle-switch {
  width: 44px;
  height: 24px;
  border-radius: 50px;
  position: relative;
  flex-shrink: 0;
  /* Prevents squishing */
  cursor: default;
  /* Not interactive, just display */
}

/* Enabled State (Neon Green) */
.toggle-switch.active {
  background-color: #9BFB0A;
  box-shadow: 0 0 10px rgba(155, 251, 10, 0.2);
}

.toggle-switch.active::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #000;
  border-radius: 50%;
  top: 3px;
  right: 3px;
  /* Knob to Right */
}

/* Disabled State (Dark Grey) */
.toggle-switch.inactive {
  background-color: #222;
  border: 1px solid #333;
}

.toggle-switch.inactive::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #444;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  /* Knob to Left */
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
  .config-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .config-column {
    margin-bottom: 2rem;
  }

  .config-column:last-child {
    margin-bottom: 0;
  }
}

/* --- SERVICES PAGE STYLES --- */

/* Services Hero Section */
.services-hero {
  background-color: #1A1A1A;
  padding: 6rem 0 4rem;
  text-align: center;
}

.services-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: 'Onest', sans-serif;
  line-height: 1.2;
}

.services-hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Services Grid Section */
.services-grid {
  background-color: #1A1A1A;
  padding: 4rem 0;
}

.services-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid transparent;
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.service-card:nth-child(1) {
  border-left-color: #4FFBDB;
}

.service-card:nth-child(2) {
  border-left-color: #9F85FF;
}

.service-card:nth-child(3) {
  border-left-color: #4DE7FF;
}

.service-card:nth-child(4) {
  border-left-color: #FF6B6B;
}

.service-card:nth-child(5) {
  border-left-color: #9BFB0A;
}

.service-number {
  font-size: 4rem;
  font-weight: 700;
  font-family: 'Onest', sans-serif;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  line-height: 1;
  z-index: 0;
}

.service-content {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Onest', sans-serif;
  line-height: 1.3;
}

.service-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Services Approach Section */
.services-approach {
  background-color: #1A1A1A;
  padding: 4rem 0;
}

.approach-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.approach-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  font-family: 'Onest', sans-serif;
  line-height: 1.2;
}

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

.approach-text p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Services Page Mobile Responsive */
@media (max-width: 768px) {
  .services-hero-title {
    font-size: 2.5rem;
  }

  .services-hero-subtitle {
    font-size: 1.125rem;
  }

  .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  .service-number {
    font-size: 3rem;
    top: 1rem;
    left: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .approach-title {
    font-size: 2rem;
  }

  .approach-text p {
    font-size: 1rem;
  }
}

/* --- WORK PAGE STYLES --- */

/* Work Hero Section */
.work-hero {
  background-color: #1A1A1A;
  padding: 6rem 0 4rem;
  text-align: center;
}

.work-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.work-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: 'Onest', sans-serif;
  line-height: 1.2;
}

.work-hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Work Gallery Section */
.work-gallery {
  background-color: #1A1A1A;
  padding: 4rem 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.work-card {
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.work-image-container {
  width: 100%;
  aspect-ratio: 9 / 16;
  background-color: #111;
  overflow: hidden;
  position: relative;
}

.work-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  font-weight: 500;
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-img {
  transform: scale(1.05);
}

.work-details {
  padding: 2rem;
}

.work-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: 'Onest', sans-serif;
  line-height: 1.3;
}

.work-details p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  background-color: #1A1A1A;
  padding: 4rem 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Onest', sans-serif;
  line-height: 1.2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
  color: #9BFB0A;
  font-weight: 600;
  margin: 0;
}

/* Work Page Mobile Responsive */
@media (max-width: 768px) {
  .work-hero-title {
    font-size: 2.5rem;
  }

  .work-hero-subtitle {
    font-size: 1.125rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .work-image-container {
    aspect-ratio: 9 / 16;
  }

  .work-details {
    padding: 1.5rem;
  }

  .work-details h3 {
    font-size: 1.25rem;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }
}

/* --- CONTACT PAGE STYLES --- */

/* Contact Hero Section */
.contact-hero {
  background-color: #1A1A1A;
  padding: 6rem 0 4rem;
  text-align: center;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: 'Onest', sans-serif;
  line-height: 1.2;
}

.contact-hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  background-color: #1A1A1A;
  padding: 4rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
  width: 100%;
}

.contact-form {
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 3rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Onest', sans-serif;
}

.form-group label .optional {
  color: var(--muted);
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9BFB0A;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(155, 251, 10, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  font-family: 'Inter', sans-serif;
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

/* Contact Info */
.contact-info {
  width: 100%;
}

.contact-info-card {
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 3rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.contact-info-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Onest', sans-serif;
}

.contact-info-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.contact-methods {
  margin-bottom: 2.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(155, 251, 10, 0.1);
  border: 1px solid rgba(155, 251, 10, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9BFB0A;
  flex-shrink: 0;
}

.contact-method-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.25rem;
  font-family: 'Onest', sans-serif;
}

.contact-method-content a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-method-content a:hover {
  color: #9BFB0A;
}

.contact-method-content p {
  color: #ffffff;
  font-size: 1rem;
  margin: 0;
}

.social-contact {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-contact h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
  font-family: 'Onest', sans-serif;
}

.social-links-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-links-contact a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.social-links-contact a:hover {
  color: #9BFB0A;
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-hero-subtitle {
    font-size: 1.125rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .contact-info-card {
    position: static;
    padding: 2rem;
  }

  .contact-method {
    margin-bottom: 1.5rem;
  }
}

/* --- ABOUT PAGE STYLES --- */

/* About Hero Section */
.about-hero {
  background-color: #1A1A1A;
  padding: 6rem 0 4rem;
  text-align: center;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: 'Onest', sans-serif;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

/* About Different Section */
.about-different {
  background-color: #1A1A1A;
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;
}

.about-card {
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #9BFB0A;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: visible;
  min-height: 200px;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 0;
}

.about-card-number {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  font-family: 'Onest', sans-serif;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Onest', sans-serif;
  position: relative;
  z-index: 1;
}

.about-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Philosophy Section */
.about-philosophy {
  background-color: #1A1A1A;
  padding: 4rem 0;
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2.5rem;
  font-family: 'Onest', sans-serif;
  line-height: 1.2;
}

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

.philosophy-text p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
}

.philosophy-lead {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.philosophy-close {
  font-size: 1.25rem;
  color: #9BFB0A;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Fit Section */
.about-fit {
  background-color: #1A1A1A;
  padding: 4rem 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 3rem;
}

.fit-card {
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
}

.fit-card.card-fit {
  border-left: 3px solid #9BFB0A;
}

.fit-card.card-not-fit {
  border-left: 3px solid #FF6B6B;
}

.fit-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(155, 251, 10, 0.1);
  border: 1px solid rgba(155, 251, 10, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9BFB0A;
  margin-bottom: 1.5rem;
}

.fit-card.card-not-fit .fit-icon {
  background-color: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.2);
  color: #FF6B6B;
}

.fit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: 'Onest', sans-serif;
}

.fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fit-list li {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.fit-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #9BFB0A;
  font-size: 1.5rem;
  line-height: 1;
}

.fit-card.card-not-fit .fit-list li::before {
  color: #FF6B6B;
}

/* About Page Mobile Responsive */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-subtitle {
    font-size: 1.125rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .about-card-number {
    font-size: 4rem;
    top: -5px;
    left: 15px;
  }

  .about-card h3 {
    font-size: 1.25rem;
  }

  .philosophy-title {
    font-size: 2rem;
  }

  .philosophy-lead {
    font-size: 1.25rem;
  }

  .philosophy-close {
    font-size: 1.125rem;
  }

  .fit-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fit-card {
    padding: 2rem;
  }
}

/* =========================================
   NEW: Lenis Smooth Scroll Styles
   ========================================= */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* =========================================
   NEW: Animations & Magnetic Elements
   ========================================= */
.gsap-reveal {
  opacity: 0;
  visibility: hidden;
}

/* Ensure they are visible when JS adds inline opacity 1 */
.gsap-reveal[style*="opacity: 1"] {
  visibility: visible;
}

.magnetic-element {
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* =========================================
   NEW: Glassmorphic Glow Tracking Effect
   ========================================= */
.metric-card {
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(155, 251, 10, 0.08),
      transparent 40%);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

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

.metric-card * {
  position: relative;
  z-index: 1;
}


/* =========================================
   SucceedCo Universe Logo Grid
   ========================================= */
.universe-header {
  text-align: center;
  margin-bottom: 2rem;
}

.universe-header .section-heading {
  margin-bottom: 1.25rem;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.universe-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5rem 6rem;
  padding: 5.5rem 2rem 2rem;
  max-width: 1250px;
  margin: 0 auto;
}

.universe-logo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0.85;
  cursor: pointer;
}

.universe-logo-item:hover {
  opacity: 1;
  transform: scale(1.12);
}

.universe-logo-item img {
  max-height: 120px;
  max-width: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}

.universe-logo-item:hover img {
  filter: brightness(1.1);
}

.logo-hover-tag {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  background: rgba(13, 13, 13, 0.95);
  border: 1px solid rgba(155, 251, 10, 0.25);
  color: #9BFB0A;
  font-family: 'Onest', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(155, 251, 10, 0.05);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.universe-logo-item:hover .logo-hover-tag {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 768px) {
  .universe-logos {
    gap: 4.2rem 3.8rem;
    padding: 3.5rem 1.5rem 1.5rem;
  }

  .universe-logo-item img {
    max-height: 85px;
    max-width: 180px;
  }

  .logo-hover-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    top: -32px;
  }
}


/* =========================================
   NEW: Success Metrics Section
   ========================================= */
.metrics {
  background: var(--bg-alt);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.metric-value {
  font-family: 'Onest', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 1rem;
}

.text-accent {
  color: var(--accent);
}

.metric-desc {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Mobile Metrics Section Responsiveness */
@media (max-width: 768px) {
  .metrics-grid {
    gap: 1rem;
    margin-top: 1.75rem;
  }

  .metric-card {
    padding: 1.75rem 1.25rem;
  }
}

/* =========================================
   NEW: Cursor Trail Effect
   ========================================= */
.cursor-trail-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #9BFB0A;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: fade-out-dot 0.6s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
  z-index: 100;
  box-shadow: 0 0 8px #9BFB0A, 0 0 16px #9BFB0A;
}

@keyframes fade-out-dot {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.5);
  }
}