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

/* --- CUSTOM PROPERTIES --- */
:root {
  --bg-dark-base: #030106;
  --bg-dark-gradient: linear-gradient(135deg, #030106 0%, #090514 100%);
  --primary-purple: #5916B2;
  --primary-purple-rgb: 89, 22, 178;
  --accent-glow: #D5B7FD;
  --accent-glow-rgb: 213, 183, 253;
  --text-primary: #F6F1FE;
  --text-secondary: #A39CAD;
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-border-hover: rgba(213, 183, 253, 0.2);
  --card-glow-opacity: 0.06;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
}

/* --- RESET & ACCESSIBILITY --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

/* --- AMBIENT GLOW SYSTEM --- */
.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-purple-rgb), 0.12) 0%, rgba(var(--primary-purple-rgb), 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  transform: translate(-50%, -50%);
  transition: var(--transition-smooth);
}

#hero-glow {
  top: 35%;
  left: 75%;
}

#services-glow {
  top: 55%;
  left: 20%;
}

#contact-glow {
  bottom: 10%;
  left: 80%;
}

/* --- LAYOUT UTILITIES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

section {
  padding: 8rem 0;
  position: relative;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .grid-2 {
    grid-template-columns: 45fr 55fr;
  }
  .grid-2.equal {
    grid-template-columns: 1fr 1fr;
  }
}

.text-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-tag {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-glow);
  margin-bottom: 1rem;
  display: inline-block;
  opacity: 0.9;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.5rem;
  }
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
}

/* --- GLASSMORPHISM CARD UTILITY --- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(var(--accent-glow-rgb), var(--card-glow-opacity)), transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(var(--primary-purple-rgb), 0.15);
}

/* --- INTERACTIVE BUTTON --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--primary-purple);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px -6px rgba(var(--primary-purple-rgb), 0.5);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(var(--primary-purple-rgb), 0.7), 0 0 15px rgba(var(--accent-glow-rgb), 0.3);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--accent-glow);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 24px -10px rgba(255, 255, 255, 0.1);
}

/* --- NAVIGATION BAR --- */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(3, 1, 6, 0.6);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.nav-logo-svg {
  width: 32px;
  height: 32px;
}

.nav-brand-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-item a {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.nav-item a:hover,
.nav-item.active a {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(var(--accent-glow-rgb), 0.5);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 110;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 1, 6, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 95;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-item a {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.mobile-item a:hover {
  color: var(--text-primary);
}

/* --- HERO EXPERIENCE --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-text {
  z-index: 2;
  position: relative;
}

.hero-title-container {
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-wordmark {
  font-size: 1.25em;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  display: block;
}

.hero-tagline {
  color: var(--accent-glow);
  text-shadow: 0 0 20px rgba(var(--primary-purple-rgb), 0.6);
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

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

.hero-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  z-index: 1;
}

.hero-logo-svg {
  width: 85%;
  height: 85%;
  max-width: 600px;
  filter: drop-shadow(0 0 30px rgba(var(--primary-purple-rgb), 0.3));
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-card {
  height: 100%;
}

.about-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent-glow);
}

.about-card p {
  color: var(--text-secondary);
}

.motto-banner {
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(circle at center, rgba(var(--primary-purple-rgb), 0.15) 0%, transparent 70%);
  border-radius: 24px;
  border: 1px solid rgba(var(--accent-glow-rgb), 0.05);
  margin-top: 6rem;
}

.motto-banner h3 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.motto-banner p {
  color: var(--text-secondary);
  font-family: var(--font-headings);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--primary-purple-rgb), 0.2);
  border: 1px solid rgba(var(--accent-glow-rgb), 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-glow);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- FEATURED WORK SECTION --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.project-card {
  cursor: pointer;
}

.project-image-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
  margin-bottom: 1.5rem;
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(3, 1, 6, 0.8) 0%, rgba(3, 1, 6, 0) 60%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-category {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 0.5rem;
}

.project-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.project-desc-short {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- PROCESS SECTION --- */
.process-timeline-container {
  position: relative;
  margin: 6rem auto 0 auto;
  max-width: 900px;
}

.timeline-svg-wrapper {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 1;
}

@media (min-width: 768px) {
  .timeline-svg-wrapper {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-svg {
  width: 100%;
  height: 100%;
}

.timeline-line-bg {
  stroke: var(--glass-border);
  stroke-width: 4;
}

.timeline-line-progress {
  stroke: var(--primary-purple);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(var(--accent-glow-rgb), 0.6));
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000; /* Set programmatically in JS */
  transition: stroke-dashoffset 0.1s ease-out;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
  margin-bottom: 6rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .process-step {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.process-node {
  position: absolute;
  left: 22px;
  top: 2rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-dark-base);
  border: 4px solid var(--glass-border);
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: var(--transition-smooth);
}

.process-step.active .process-node {
  border-color: var(--accent-glow);
  box-shadow: 0 0 15px var(--primary-purple);
  background: var(--accent-glow);
}

@media (min-width: 768px) {
  .process-node {
    left: 50%;
  }
}

.process-content {
  padding-left: 3.5rem;
}

@media (min-width: 768px) {
  .process-content {
    padding-left: 0;
  }
  .process-step:nth-child(odd) .process-content {
    grid-column: 1;
    text-align: right;
  }
  .process-step:nth-child(even) .process-content {
    grid-column: 2;
    text-align: left;
  }
}

.process-step:nth-child(even) .process-content {
  @media (min-width: 768px) {
    grid-column: 2;
  }
}

.process-number {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(var(--accent-glow-rgb), 0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.process-step.active .process-number {
  color: rgba(var(--accent-glow-rgb), 0.3);
}

.process-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.process-content p {
  color: var(--text-secondary);
}

/* --- WHY QUINTARA SECTION --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-card {
  display: flex;
  gap: 1.5rem;
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(var(--primary-purple-rgb), 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-glow);
}

.why-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.why-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- CONTACT SECTION --- */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-form-card {
  z-index: 2;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--accent-glow);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 15px rgba(var(--primary-purple-rgb), 0.25);
}

.form-group.focused label {
  color: var(--accent-glow);
}

.contact-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 350px;
}

.contact-logo-svg {
  width: 70%;
  max-width: 400px;
  filter: drop-shadow(0 0 20px rgba(var(--primary-purple-rgb), 0.2));
  transition: filter 0.3s ease;
}

.contact-logo-svg.active {
  filter: drop-shadow(0 0 40px rgba(var(--accent-glow-rgb), 0.7));
}

.contact-logo-svg.success {
  filter: drop-shadow(0 0 60px rgba(180, 100, 255, 0.9));
}

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0;
  background: rgba(3, 1, 6, 0.9);
  position: relative;
  z-index: 2;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
  }
}

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

@media (min-width: 768px) {
  .footer-left {
    align-items: flex-start;
  }
}

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

.footer-logo-svg {
  width: 24px;
  height: 24px;
}

.footer-logo-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.social-link:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* --- CASE STUDY MODAL OVERLAY --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 1, 6, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 90%;
  max-width: 1000px;
  max-height: 85vh;
  background: rgba(10, 8, 16, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.open .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1010;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-glow);
  transform: rotate(90deg);
}

.modal-header-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.modal-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-header-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 8, 16, 1) 0%, rgba(10, 8, 16, 0) 100%);
}

.modal-body {
  padding: 3rem;
}

.modal-category {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.modal-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

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

.meta-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.meta-item p {
  font-size: 0.95rem;
  font-weight: 500;
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.modal-section-title {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem 0;
  color: var(--text-primary);
}

.modal-list {
  list-style: none;
  margin-left: 0.5rem;
  margin-bottom: 2rem;
}

.modal-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.modal-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-glow);
}
