/* ==========================================================================
   LA! (Lakendra Ford) Luxury Branding CSS Design System - Multi-Page Version
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Global Fonts */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* Global Colors */
  --color-white: #ffffff;
  --color-offwhite: #fcfcfc;
  --color-softgray: #f5f5f7;
  --color-border: rgba(0, 0, 0, 0.08);
  
  /* Text Contrast - Solid Black Accents */
  --color-dark: #050505;
  --color-dark-muted: #2d2d2d;
  
  /* High Opacity Glass to ensure text legibility */
  --color-glass-bg: rgba(255, 255, 255, 0.93);
  --color-glass-border: rgba(255, 255, 255, 0.8);
  
  --shadow-premium: 0 15px 30px rgba(0, 0, 0, 0.04);
  --shadow-glow-purple: 0 15px 35px rgba(122, 38, 193, 0.1);
  --shadow-glow-pink: 0 15px 35px rgba(255, 20, 147, 0.1);
  --shadow-glow-blue: 0 15px 35px rgba(0, 191, 255, 0.1);

  /* Identity Themes */
  --color-artist-primary: #7A26C1;
  --color-artist-accent: #4B0B7F;
  --color-artist-bg: #FAF5FF;
  
  --color-writer-primary: #FF1493;
  --color-writer-accent: #C71585;
  --color-writer-bg: #FFF0F6;
  
  --color-host-primary: #00BFFF;
  --color-host-accent: #0000CD;
  --color-host-bg: #F0F8FF;

  --theme-primary: var(--color-artist-primary);
  --theme-accent: var(--color-artist-accent);
  --theme-bg: var(--color-artist-bg);
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: initial;
  overflow-x: hidden;
  background-color: var(--color-white);
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-offwhite);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Accessibility --- */
#main-content {
  outline: none;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  z-index: var(--z-progress, 10001);
  padding: var(--space-3) var(--space-6);
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: var(--space-4);
}

/* Focus visible — brand-colored keyboard ring */
:focus-visible {
  outline: 2px solid var(--theme-primary, #7A26C1);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}


/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400; /* Elegant serif headers are light */
  text-transform: none;
  letter-spacing: 0.5px;
  line-height: 1.25;
  color: var(--color-dark);
}

.editorial-italic {
  font-style: italic;
  font-family: var(--font-heading);
}

p {
  font-weight: 300;
  color: var(--color-dark-muted);
}

strong {
  font-weight: 600;
  color: var(--color-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Layout Utility Classes --- */
.section-padding {
  padding: 7rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--theme-primary);
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-dark);
}

.body-text {
  font-size: 1.05rem;
  line-height: 1.7;
}

.lead-text {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark);
}

/* --- Dynamic Background --- */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(240, 240, 240, 0.4) 0%, rgba(255, 255, 255, 1) 90%);
}

/* --- Image Ratio Scaling (NO HEAD CROP / DISTORTION) --- */
.img-contained-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: var(--shadow-premium);
}

.img-contained-el {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Full visibility, no cropping */
  background-color: var(--color-white);
  display: block;
}

.img-cover-top-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: var(--shadow-premium);
}

.img-cover-top-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Keeps head fully in frame */
  display: block;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-artist-primary), var(--color-writer-primary), var(--color-host-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background-color: var(--color-softgray);
  margin: 0 auto;
  border-radius: 1px;
  overflow: hidden;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-artist-primary), var(--color-writer-primary), var(--color-host-primary));
  animation: progressLoad 1.8s cubic-bezier(0.65, 0.05, 0.36, 1) forwards;
}

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

/* --- Buttons --- */
.btn-premium {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.85rem 2rem;
  background-color: var(--color-dark);
  color: var(--color-white);
  border: 1px solid var(--color-dark);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.btn-premium:hover {
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.85rem 2rem;
  background-color: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.btn-outline:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* --- Glassmorphic Card (High Opacity for text legibility) --- */
.glass-card {
  background: var(--color-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-glass-border);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
}

/* --- Header & Navigation --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 3rem;
  background-color: rgba(255, 255, 255, 0.95); /* High opacity to guarantee visual readability */
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  padding: 1rem 3rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.brand-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 2rem;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-dark);
  padding-bottom: 0.3rem;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--theme-primary);
  transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--theme-primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-dark);
  margin: 4px 0;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 2000;
  padding: 2.5rem;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-dark);
}

.drawer-list {
  list-style: none;
  margin-top: 2rem;
}

.drawer-list li {
  margin-bottom: 1.5rem;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-dark);
  letter-spacing: 1px;
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--theme-primary);
}

/* --- Hero & 3D Cube (index.html) --- */
.hero-section {
  min-height: 90vh;
  padding-top: 8rem;
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
}

.hero-name {
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: -3px;
  background: linear-gradient(135deg, var(--color-artist-primary), var(--color-writer-primary), var(--color-host-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  margin-top: 1rem;
  max-width: 480px;
}

.hero-cube-container {
  min-height: 480px;
  perspective: 1200px;
}

.cube-wrapper {
  position: relative;
  width: 300px;
  height: 380px;
  transform-style: preserve-3d;
}

.cube {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transform: translateZ(-150px);
}

.cube-face {
  position: absolute;
  width: 300px;
  height: 380px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-premium);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backface-visibility: hidden;
  cursor: grab;
}

.cube-face:active {
  cursor: grabbing;
}

.face-artist { transform: rotateY(0deg) translateZ(150px); }
.face-writer { transform: rotateY(90deg) translateZ(150px); }
.face-host { transform: rotateY(180deg) translateZ(150px); }
.face-visionary { 
  transform: rotateY(-90deg) translateZ(150px); 
  background: radial-gradient(circle at center, #ffffff 0%, var(--color-softgray) 100%);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.face-image-wrapper {
  width: 100%;
  height: 65%;
  overflow: hidden;
}

.face-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Ensures her head doesn't crop */
}

.face-content {
  padding: 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.face-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.face-artist .face-label { color: var(--color-artist-primary); }
.face-writer .face-label { color: var(--color-writer-primary); }
.face-host .face-label { color: var(--color-host-primary); }

.face-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

.face-tagline {
  font-size: 0.8rem;
  color: var(--color-dark-muted);
  margin-top: 0.1rem;
}

.face-branding-logo {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--color-artist-primary), var(--color-writer-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.face-btn {
  font-size: 0.75rem;
  padding: 0.6rem 1.5rem;
  margin-top: 1rem;
}

.cube-instruction {
  margin-top: 1rem;
  font-size: 0.8rem;
}

/* --- Brand Section Gateway Portals --- */
.gateway-cards-row {
  margin-top: 4rem;
}

.gateway-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.gateway-card:hover {
  transform: translateY(-8px);
}

.gateway-card.artist-card:hover { border-color: var(--color-artist-primary); box-shadow: var(--shadow-glow-purple); }
.gateway-card.writer-card:hover { border-color: var(--color-writer-primary); box-shadow: var(--shadow-glow-pink); }
.gateway-card.host-card:hover { border-color: var(--color-host-primary); box-shadow: var(--shadow-glow-blue); }

.gateway-img-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.gateway-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.gateway-content {
  padding: 2rem;
}

.gateway-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
}

.artist-card .gateway-tag { color: var(--color-artist-primary); }
.writer-card .gateway-tag { color: var(--color-writer-primary); }
.host-card .gateway-tag { color: var(--color-host-primary); }

.gateway-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

.gateway-text {
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.gateway-link-btn {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Footer --- */
.main-footer {
  padding: 5rem 0 3rem 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.footer-brand-logo {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--color-artist-primary), var(--color-writer-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-motto {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--color-dark-muted);
}

.footer-newsletter p {
  font-size: 0.85rem;
}

.newsletter-form {
  display: flex;
}

.footer-social-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-dark-muted);
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--color-dark);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-dark-muted);
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.legal-link {
  color: var(--color-dark-muted);
}

.legal-link:hover {
  color: var(--color-dark);
}

/* --- Cinematic Video Modal Overlay --- */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.video-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  font-size: 3rem;
  color: var(--color-white);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.video-modal-close:hover {
  opacity: 1;
}

.video-modal-container {
  width: 90%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
}

.video-modal-title {
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.video-modal-frame-wrapper {
  position: relative;
  padding-top: 56.25%;
  background-color: #000;
  border-radius: 4px;
  overflow: hidden;
}

.video-modal-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .hero-section { text-align: center; }
  .hero-name { font-size: 4.5rem; }
  .hero-description { margin: 1rem auto 0 auto; }
  .hero-cube-container { margin-top: 3rem; min-height: 440px; }
  .main-header { padding: 1.2rem 2rem; }
}

@media (max-width: 575.98px) {
  .hero-name { font-size: 3.5rem; }
  .section-title { font-size: 2.2rem; }
  .glass-card { padding: 1.5rem; }
  .cube-wrapper, .cube-face { width: 260px; height: 340px; }
  .face-artist { transform: rotateY(0deg) translateZ(130px); }
  .face-writer { transform: rotateY(90deg) translateZ(130px); }
  .face-host { transform: rotateY(180deg) translateZ(130px); }
  .face-visionary { transform: rotateY(-90deg) translateZ(130px); }
  .cube { transform: translateZ(-130px); }
  .main-header { padding: 1rem 1.2rem; }
}

/* --- Custom Cursor Systems (Desktop only) --- */
@media (min-width: 992px) {
  body {
    cursor: none; /* Hide default cursor */
  }
  a, button, select, input, textarea, .gallery-card, .netflix-card, .timeline-step-item, .cube-face {
    cursor: none !important;
  }
  
  .custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: var(--theme-primary);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s;
  }
  
  .custom-cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid var(--theme-primary);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .cursor-text {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    letter-spacing: 0.5px;
    display: none;
  }

  /* Hover states */
  .custom-cursor-ring.hover-active {
    width: 48px;
    height: 48px;
    background-color: rgba(122, 38, 193, 0.08);
    border-color: var(--theme-accent);
  }

  .custom-cursor-ring.drag-active {
    width: 54px;
    height: 54px;
    background-color: var(--color-artist-primary);
    border-color: var(--color-artist-primary);
  }
  
  .custom-cursor-ring.drag-active .cursor-text {
    display: block;
  }
  
  .custom-cursor-ring.play-active {
    width: 60px;
    height: 60px;
    background-color: var(--color-writer-primary);
    border-color: var(--color-writer-primary);
  }
  
  .custom-cursor-ring.play-active .cursor-text {
    display: block;
  }
}

/* --- Scroll Progress Line --- */
.scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background-color: var(--theme-primary);
  z-index: 10001;
  pointer-events: none;
  transition: width 0.1s ease, background-color 0.3s;
}

/* --- Preloader Light Trails --- */
.preloader-trail-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.preloader-trail {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transform: translate(-50%, -50%);
}

.preloader-trail-purple {
  border-top-color: var(--color-artist-primary);
  animation: loader-spin-cw 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
  width: 140px;
  height: 140px;
}

.preloader-trail-pink {
  border-right-color: var(--color-writer-primary);
  animation: loader-spin-ccw 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
  width: 165px;
  height: 165px;
}

.preloader-trail-blue {
  border-bottom-color: var(--color-host-primary);
  animation: loader-spin-cw 2.0s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
  width: 190px;
  height: 190px;
}

@keyframes loader-spin-cw {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes loader-spin-ccw {
  0% { transform: translate(-50%, -50%) rotate(360deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}

/* --- Breathing Background Blobs --- */
.ambient-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.09;
  z-index: -2;
  pointer-events: none;
}

.ambient-blob-1 {
  top: -15%;
  left: -15%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--color-artist-primary) 0%, rgba(255,255,255,0) 70%);
  animation: blob-breathe 22s ease-in-out infinite alternate;
}

.ambient-blob-2 {
  bottom: -15%;
  right: -15%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--color-writer-primary) 0%, rgba(255,255,255,0) 70%);
  animation: blob-breathe 28s ease-in-out infinite alternate-reverse;
}

@keyframes blob-breathe {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(8%, 8%) scale(1.18) rotate(45deg);
  }
}

