  :root {
      --cursor-size: 30px;
      --line-color: #A098FF;
      --accent-cyan: #8AF0E8;
      --bg-color: #050505;
      --card-color: #121212;
  }

  body {
      background-color: var(--bg-color);
      color: #EAEAEA;
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      cursor: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }

  /* Hide scrollbar for a cleaner look */
  ::-webkit-scrollbar {
      display: none;
  }

  /* Text Gradient Utility from original Monocelha site */
  .text-gradient {
      background: linear-gradient(90deg, #A098FF, #f0abfc, #8AF0E8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  /* Esfera Seguidora do Cursor (Original Monocelha Site Cursor) */
  .cursor-follower,
  #custom-cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999;
      background: linear-gradient(45deg, #A098FF, #f7a2d2, #8AF0E8);
      box-shadow: 0 0 20px #A098FF;
      transform: translate(-50%, -50%);
      transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                  height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                  background 0.3s ease,
                  box-shadow 0.3s ease,
                  opacity 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: #050505;
      text-transform: uppercase;
      letter-spacing: 0.05em;
  }

  .cursor-follower.grow,
  #custom-cursor.active,
  #custom-cursor.grow {
      width: 65px;
      height: 65px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 0 35px #f7a2d2;
  }

  #custom-cursor.active-video {
      width: 90px;
      height: 90px;
      background: rgba(160, 152, 255, 0.25);
      backdrop-filter: blur(10px);
      box-shadow: 0 0 40px #8AF0E8;
  }

  /* SVG Signature Line */
  #global-line-svg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 50;
  }

  .monocelha-line {
      fill: none;
      stroke: var(--line-color);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
  }

  /* Typography Utilities */
  .text-display {
      font-family: 'Space Grotesk', sans-serif;
      text-transform: uppercase;
  }

  .marquee-container {
      overflow: hidden;
      white-space: nowrap;
      width: 100%;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 2rem 0;
      background-color: var(--bg-color);
  }

  .marquee-content {
      display: inline-block;
      white-space: nowrap;
  }

  /* Capabilities Accordion */
  .accordion-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
  }

  .accordion-header {
      cursor: none;
  }

  .accordion-content {
      height: 0;
      overflow: hidden;
      transition: height 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  }

  /* Project Hover Image Reveal */
  .project-row {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      cursor: none;
  }

  .project-hover-img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8) rotate(-5deg);
      width: 400px;
      height: 300px;
      object-fit: cover;
      opacity: 0;
      pointer-events: none;
      z-index: 10;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      filter: grayscale(100%);
  }

  .project-row:hover .project-hover-img {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1) rotate(0deg);
      filter: grayscale(0%);
  }

  .project-row:hover h3 {
      transform: translateX(20px);
      color: var(--line-color);
  }

  /* Smooth transitions for text */
  .hover-shift {
      display: inline-block;
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
  }

  /* Preloader */
  #preloader {
      position: fixed;
      inset: 0;
      background: var(--bg-color);
      z-index: 99999;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .split-char {
      display: inline-block;
      overflow: hidden;
      vertical-align: top;
  }

  .split-char-inner {
      display: inline-block;
      transform: translateY(100%);
  }

  /* Disable custom cursor on touch devices */
  @media (hover: none) and (pointer: coarse) {
      body {
          cursor: auto;
      }

      .cursor-follower,
      #custom-cursor {
          display: none !important;
      }

      .accordion-header,
      .project-row,
      .faq-header,
      .briefing-chip {
          cursor: pointer;
      }
  }

  /* Briefing Form Chips & Options */
  .briefing-chip {
      border: 1px solid rgba(255, 255, 255, 0.2);
      background-color: rgba(255, 255, 255, 0.03);
      color: #F5F5F2;
      padding: 0.75rem 1.25rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: none;
      user-select: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
  }

  .briefing-chip:hover {
      border-color: var(--line-color);
      color: var(--line-color);
      background-color: rgba(160, 152, 255, 0.08);
  }

  .briefing-chip.selected {
      background: linear-gradient(135deg, #A098FF 0%, #f0abfc 50%, #8AF0E8 100%);
      background-size: 200% 200%;
      animation: holoGradient 3s ease infinite;
      border-color: #8AF0E8;
      color: #050505;
      font-weight: 700;
      box-shadow: 0 0 20px rgba(160, 152, 255, 0.6), 0 0 10px rgba(138, 240, 232, 0.4);
      transform: translateY(-2px);
  }

  @keyframes holoGradient {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
  }

  /* Metric Badge Styling */
  .metric-badge {
      display: inline-flex;
      flex-direction: column;
      padding: 1rem 1.5rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-left: 3px solid var(--line-color);
      border-radius: 4px;
  }

  /* Insight Cards */
  .insight-card {
      background: var(--card-color);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .insight-card:hover {
      border-color: var(--line-color);
      transform: translateY(-6px);
      box-shadow: 0 10px 30px rgba(160, 152, 255, 0.15);
  }

  /* FAQ Accordion Styling */
  .faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .faq-header {
      cursor: none;
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
      opacity: 0;
  }

  .faq-answer.open {
      max-height: 600px;
      opacity: 1;
  }