/* Design System Tokens */
:root {
  --bg-main: #080a0f;
  --bg-card: rgba(19, 24, 36, 0.5);
  --bg-card-hover: rgba(27, 34, 52, 0.8);
  
  --primary: #00d9ff;
  --primary-rgb: 0, 217, 255;
  --accent: #2e8bfe;
  --accent-rgb: 46, 139, 254;
  
  --text-main: #f0f3f8;
  --text-secondary: #cdd6e4;
  --text-muted: #6e7d95;
  
  --border-color: rgba(255, 255, 255, 0.06);
  --border-color-hover: rgba(0, 217, 255, 0.25);
  
  --font-sans: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Fluid Foundations */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* 100% Full-Width Responsive Container */
.container-fluid {
  width: 100%;
  padding: 0 4%;
}

.nav-container-fluid {
  width: 100%;
  padding: 0 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.mono {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

/* Headings */
h1, h2, h3 {
  font-weight: 900;
  line-height: 1.15;
}

/* Parallax Container Layouts */
.parallax-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 4%;
  border-bottom: 1px solid var(--border-color);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1024px) {
  .parallax-section {
    background-attachment: scroll;
  }
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 10, 15, 0.82);
  z-index: 1;
}

/* Fluid Contents */
.fluid-content {
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.fluid-content.max-width-700 {
  max-width: 700px;
}

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

/* Navigation Header */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 100;
  background: rgba(8, 10, 15, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.logo {
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.logo-slogan {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 12px;
  margin-left: 12px;
  display: inline-block;
  line-height: 1;
}

@media (max-width: 768px) {
  .logo-slogan {
    display: none;
  }
}

.logo-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-left: 3px;
  box-shadow: 0 0 10px var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

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

.nav-cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg-main);
  background: var(--primary);
  padding: 10px 24px;
  border-radius: var(--radius-md);
}

.nav-cta:hover {
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

@media (max-width: 1100px) {
  .logo-slogan {
    display: none;
  }

  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 960px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-main);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
  }

  .nav-menu.active {
    transform: translateX(0);
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 2rem;
  cursor: pointer;
}

.hero-parallax .fluid-content{
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    min-height: 100vh;

    text-align: center;
}
.hero-parallax .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary);
  margin-bottom: 32px;
}

.hero-parallax .hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--text-main);
  letter-spacing: 0.05em;
  line-height: 1.15;
}

.hero-parallax .hero-title span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .hero-parallax .hero-title span {
    white-space: normal;
  }
}

.text-highlight {
  color: var(--primary);
  font-weight: 700;
}

.hero-parallax .hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Buttons styling matching design token specs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-main);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.3);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-muted);
}

/* Hero Visual Double Floating Card */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup {
  position: absolute;
  max-width: 260px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
  transition: var(--transition-bounce);
}

.mockup-1 {
  transform: translate(-15%, -12%) rotate(-6deg);
  z-index: 2;
}

.mockup-2 {
  transform: translate(20%, 12%) rotate(8deg);
  z-index: 1;
}

.hero-mockup-wrapper:hover .mockup-1 {
  transform: translate(-25%, -16%) rotate(-12deg) scale(1.05);
  z-index: 3;
}

.hero-mockup-wrapper:hover .mockup-2 {
  transform: translate(30%, 18%) rotate(14deg) scale(1.05);
}

/* Section common headers */
.section-head-fluid {
  margin-bottom: 60px;
  width: 100%;
}

.section-head {
  margin-bottom: 48px;
}

.about-parallax {
  position: relative;
  width: 100%;
  min-height: auto;
  padding: 120px 0;
  border-bottom: 1px solid var(--border-color);
  background: #080a0f;
  overflow: hidden;
  isolation: isolate;
}

.hero-parallax {
  overflow: hidden;
  isolation: isolate;
}

.about-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
  transform: scale(1.05);
  transform-origin: center;
  will-change: transform;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 10%, #000 26%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 10%, #000 26%, #000 100%);
}

.about-parallax-overlay {
  background:
    radial-gradient(circle at 16% 22%, rgba(0, 217, 255, 0.08), transparent 28%),
    radial-gradient(circle at 82% 52%, rgba(130, 36, 227, 0.09), transparent 34%),
    rgba(8, 10, 15, 0.7);
}

/* Bento Grid Layout */
.about-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  width: 100%;
}

.bento-card {
  --about-parallax-y: 0px;
  background: rgba(19, 24, 36, 0.45);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate3d(0, var(--about-parallax-y), 0);
  will-change: transform;
}

.bento-card:hover {
  transform: translate3d(0, calc(var(--about-parallax-y) - 5px), 0);
  border-color: var(--border-color-hover);
  background: rgba(27, 34, 52, 0.65);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Card column mappings */
.bento-intro {
  grid-column: span 7;
}

.bento-web {
  grid-column: span 5;
  justify-content: flex-start;
  gap: 20px;
}

.bento-3d {
  grid-column: span 5;
}

.bento-games {
  grid-column: span 7;
}

.bento-partnership {
  grid-column: span 7;
}

.bento-awards {
  grid-column: span 5;
}

.bento-awards-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 12px;
}

@media (max-width: 700px) {
  .bento-awards-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .bento-awards-list {
    grid-template-columns: 1fr;
  }
}

.bento-awards-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bento-awards-list .award-medal {
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 2px;
  filter: drop-shadow(0 0 7px rgba(var(--primary-rgb), 0.28));
}

.bento-awards-list li strong {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Card Header & Content */
.bento-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.bento-card:hover .bento-icon {
  background: var(--primary);
  color: var(--bg-main);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

.bento-card h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 20px;
}

.bento-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
}

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

.bento-card p strong {
  color: var(--text-main);
  font-weight: 700;
}

.bento-intro .lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 32px;
}

/* Intro specific Quote block styling */
.bento-quote {
  border-left: 2px solid var(--primary);
  padding-left: 24px;
  margin-top: auto;
  position: relative;
}

.bento-quote i {
  font-size: 1.8rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -12px;
  left: 8px;
}

.bento-quote p {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Client Logos Marquee */
.clients-strip {
  margin-top: 200px;
  width: 100%;
}

.clients-strip .mono {
  text-align: center;
  margin-bottom: 0;
}

.clients-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-marquee-row {
  display: flex;
  align-items: flex-end;
  gap: 80px;
  width: max-content;
  animation: clients-scroll 110s linear infinite;
}

.clients-marquee:hover .clients-marquee-row {
  animation-play-state: paused;
}

.clients-track {
  display: flex;
  align-items: flex-end;
  gap: 80px;
  padding-top: 10px;

}

.clients-track img {
  height: 96px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.clients-track img:hover {
  opacity: 0.9;
}

/* translateX(-50%) moves half of the ROW's own width (both tracks + the
   gap between them). To land exactly on where track 2 starts -- so the
   loop has no seam -- we need to move half a gap further than that. */
@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 40px));
  }
}

@media (max-width: 768px) {
  .clients-marquee-row {
    gap: 48px;
  }
  .clients-track {
    gap: 48px;
  }
  .clients-track img {
    height: 72px;
  }
  @keyframes clients-scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 24px));
    }
  }
}

/* Responsive Bento Overrides */
@media (max-width: 992px) {
  .bento-intro, .bento-web, .bento-3d, .bento-games, .bento-partnership, .bento-awards {
    grid-column: span 12;
  }
  .bento-card {
    padding: 32px;
  }
}


.feature-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.about-feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--bg-main);
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
}

.about-feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
}

.about-feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}



/* Portfolio Horizontal Scrolling Section (Parallax effect) */
.portfolio-parallax-showcase {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: clamp(30px, 5vh, 100px) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #080a0f;
  isolation: isolate;
}

.portfolio-parallax-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 30%, rgba(0, 217, 255, 0.07), transparent 32%),
    radial-gradient(circle at 88% 60%, rgba(130, 36, 227, 0.08), transparent 38%),
    rgba(8, 10, 15, 0.54);
}

.portfolio-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.portfolio-parallax-showcase .section-head-fluid,
.portfolio-parallax-showcase .scroll-track-container {
  position: relative;
  z-index: 2;
}

.portfolio-parallax-showcase .section-head-fluid {
  padding: 0 4%;
  margin-bottom: clamp(16px, 3vh, 48px);
}

.portfolio-services-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.portfolio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(19, 24, 36, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.portfolio-badge i {
  color: var(--primary);
  font-size: 0.95rem;
}

.portfolio-badge:hover {
  background: rgba(var(--primary-rgb), 0.08);
  border-color: var(--primary);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 217, 255, 0.15);
}

.scroll-track-container {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vh, 24px);
  width: 100%;
}

.scroll-track-row {
  display: flex;
  gap: clamp(10px, 1.6vh, 24px);
  width: max-content;
  will-change: transform;
  transition: transform 0.1s cubic-bezier(0.1, 0.9, 0.2, 1);
}


.portfolio-track-card {
  position: relative;
  height: clamp(140px, 16.5vh, 320px);
  aspect-ratio: 250 / 159;
  width: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color var(--transition-smooth), transform var(--transition-smooth);
}

.portfolio-track-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.track-card-slideshow {
  position: absolute;
  inset: 0;
}

.track-card-slideshow > img {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: comary-card-fade 27s linear infinite;
  animation-delay: calc((var(--slide) * 3s) - 27s);
}

@keyframes comary-card-fade {
  0%, 8.8889% { opacity: 1; }
  11.1111%, 97.7778% { opacity: 0; }
  100% { opacity: 1; }
}

.track-card-slideshow--skn img {
  animation-name: skn-card-fade;
  animation-duration: 18s;
  animation-delay: calc((var(--slide) * 3s) - 18s);
}

@keyframes skn-card-fade {
  0%, 10% { opacity: 1; }
  16.6667%, 93.3333% { opacity: 0; }
  100% { opacity: 1; }
}

.track-card-slideshow--mockups .mockup-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: mockup-card-fade 96s linear infinite;
  animation-delay: calc((var(--slide) * 4s) - 96s);
}

.track-card-slideshow--mockups .mockup-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #090c12;
}

@keyframes mockup-card-fade {
  0%, 3.125% { opacity: 1; }
  4.1667%, 98.9583% { opacity: 0; }
  100% { opacity: 1; }
}

.track-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(to top, rgba(8, 10, 15, 0.95) 10%, rgba(8, 10, 15, 0) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(14px, 2vh, 32px);
  opacity: 0.9;
  z-index: 1;
  transition: var(--transition-smooth);
}

.track-card-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.9vh, 0.9rem);
  color: var(--primary);
  text-transform: uppercase;
}

.track-card-overlay span i {
  color: var(--primary);
  font-size: 0.78rem;
}

.track-card-overlay h4 {
  font-size: clamp(1rem, 1.5vh, 1.6rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 3px;
}

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

.portfolio-track-card:hover .track-card-overlay {
  background: linear-gradient(to top, rgba(0, 217, 255, 0.2) 0%, rgba(8, 10, 15, 0.8) 100%);
}

.portfolio-track-card:hover {
  border-color: var(--border-color-hover);
}


/* Contact Fluid Form layout - Horizontal Distribution */
.fluid-contact-form-horizontal {
  background: rgba(19, 24, 36, 0.45);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(16px);
  width: 100%;
}

/* Honeypot anti-spam field: hidden from real users, visible to simple bots */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Form status alert (success / error), shown above the fields */
.form-status {
  display: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.form-status.visible {
  display: block;
}

.form-status-success {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
}

.form-status-error {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.form-inputs-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.form-message-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.form-message-row textarea {
  flex: 1;
  min-height: 120px;
  resize: vertical;
}

.form-captcha-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.form-captcha-row .h-captcha {
  flex: 0 0 auto;
  min-height: 78px;
}

.form-captcha-row .btn-primary {
  flex: 0 0 240px;
  height: 60px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .form-inputs-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .form-inputs-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-message-row {
    flex-direction: column;
    gap: 16px;
  }
  .form-captcha-row {
    align-items: flex-end;
    flex-direction: column;
    gap: 14px;
  }
  .form-captcha-row .h-captcha {
    transform: scale(0.92);
    transform-origin: right center;
  }
  .form-captcha-row .btn-primary {
    flex: none;
    width: 100%;
  }
}

.fluid-input {
  width: 100%;
  background: rgba(8, 10, 15, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.fluid-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.2);
}

textarea.fluid-input {
  resize: vertical;
}

select.fluid-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* Inteligência Artificial: ferramentas abertas e rotas de dados animadas */
.ai-tools-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(100px, 11vw, 160px) 4%;
  overflow: hidden;
  background: #07090e;
  border-bottom: 1px solid var(--border-color);
  isolation: isolate;
}

.ai-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.ai-tools-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 217, 255, 0.09), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(130, 36, 227, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(7, 9, 14, 0.72), rgba(7, 9, 14, 0.88));
}

.ai-tools-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.ai-tools-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 92px);
}

.ai-tools-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.ai-tools-copy {
  padding-left: 28px;
  border-left: 1px solid rgba(var(--primary-rgb), 0.34);
}

.ai-tools-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.72;
}

.ai-tools-copy p + p {
  margin-top: 20px;
}

.ai-tools-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.ai-tool-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: clamp(24px, 2.2vw, 34px);
  overflow: hidden;
  background: rgba(12, 16, 25, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform 350ms ease, border-color 350ms ease, background 350ms ease;
}

.ai-tool-card::after {
  content: '';
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  transition: transform 450ms ease, border-color 350ms ease;
}

.ai-tool-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb), 0.46);
  background: rgba(14, 20, 31, 0.9);
}

.ai-tool-card:hover::after {
  transform: scale(1.7);
  border-color: rgba(var(--primary-rgb), 0.24);
}

.ai-tool-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--primary);
}

.ai-tool-card-top i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 10px;
  font-size: 1.15rem;
}

.ai-tool-card-top span,
.ai-tools-footer span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.ai-tool-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 1.7vw, 1.7rem);
  line-height: 1.1;
}

.ai-tool-card p {
  margin: 0 0 28px;
  color: var(--text-secondary);
  line-height: 1.62;
}

.ai-tool-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ai-tool-card a:hover {
  color: var(--text-main);
}

.ai-tools-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.ai-tools-footer a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-main);
  font-weight: 600;
}

.ai-tools-footer a:hover {
  color: var(--primary);
}

.ai-loras-showcase {
  scroll-margin-top: 110px;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: clamp(60px, 7vw, 110px);
  padding: clamp(48px, 6vh, 72px) 0;
}

.ai-loras-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(34px, 4vw, 56px);
}

.ai-loras-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(1.55rem, 3.4vw, 4.4rem);
  line-height: 0.96;
}

.ai-loras-heading-line {
  white-space: nowrap;
}

.ai-loras-copy {
  padding-left: 28px;
  border-left: 1px solid rgba(130, 36, 227, 0.48);
}

.ai-loras-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.72;
}

.ai-loras-copy p + p {
  margin-top: 20px;
}

.ai-loras-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(180px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--primary-rgb), 0.42) transparent;
}

.ai-loras-grid::-webkit-scrollbar {
  height: 6px;
}

.ai-loras-grid::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-rgb), 0.42);
  border-radius: 999px;
}

.ai-loras-grid::-webkit-scrollbar-track {
  background: transparent;
}

.ai-lora-card {
  position: relative;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  min-width: 0;
  overflow: hidden;
  color: var(--text-main);
  background: rgba(12, 16, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform 350ms ease, border-color 350ms ease, background 350ms ease;
}

.ai-lora-card:hover {
  color: var(--text-main);
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb), 0.46);
  background: rgba(14, 20, 31, 0.94);
}

.ai-lora-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.ai-lora-media {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #11141c;
}

.ai-lora-media > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 550ms cubic-bezier(0.16, 1, 0.3, 1), filter 350ms ease;
}

.ai-lora-card:hover .ai-lora-media > img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.03);
}

.ai-lora-card--style .ai-lora-media > img {
  object-fit: cover;
  object-position: center 24%;
  padding: 0;
  background: #f2f2ef;
}

.ai-lora-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: clamp(16px, 1.4vw, 22px);
}

.ai-lora-type {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  margin: 0;
  padding: 6px 8px;
  max-width: calc(100% - 24px);
  background: rgba(7, 9, 14, 0.76);
  border: 1px solid rgba(var(--primary-rgb), 0.28);
  border-radius: 6px;
  backdrop-filter: blur(6px);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.11em;
}

.ai-lora-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 1.35vw, 1.45rem);
  line-height: 1.08;
}

.ai-lora-card p {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.3;
}

.ai-lora-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.ai-loras-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.ai-loras-footer > span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.ai-loras-footer a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-main);
  font-weight: 600;
}

.ai-loras-footer a:hover {
  color: var(--primary);
}

@media (max-width: 1050px) {
  .ai-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 960px) {
  .ai-loras-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .ai-tools-section {
    padding: 92px 4% 100px;
  }

  .ai-tools-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ai-loras-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ai-tools-copy,
  .ai-loras-copy {
    padding-left: 20px;
  }

  .ai-tools-grid {
    grid-template-columns: 1fr;
  }

  .ai-tool-card {
    min-height: 280px;
  }

  .ai-tools-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .ai-lora-card {
    flex-direction: column;
  }

  .ai-lora-media {
    aspect-ratio: 16 / 11;
  }

  .ai-loras-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Contact screen: flex column so form fills space and footer sits at bottom */
.contact-parallax {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: stretch !important;
  padding: 0 !important;
  background: #080a0f;
  overflow: hidden;
  isolation: isolate;
}

.contact-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
  transform: scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.contact-parallax-overlay {
  background:
    radial-gradient(circle at 18% 32%, rgba(0, 217, 255, 0.09), transparent 34%),
    radial-gradient(circle at 82% 68%, rgba(130, 36, 227, 0.1), transparent 38%),
    rgba(8, 10, 15, 0.76);
}

.contact-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 40px;
}

#contact-form,
.contact-parallax .clients-strip {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .about-parallax .bento-card,
  .about-canvas,
  .portfolio-canvas,
  .ai-canvas,
  #contact-form,
  .contact-parallax .clients-strip,
  .contact-canvas {
    transform: none !important;
  }

  .track-card-slideshow--mockups .mockup-slide {
    animation: none;
    opacity: 0;
  }

  .track-card-slideshow--mockups .mockup-slide:first-child {
    opacity: 1;
  }

  .video-modal-dialog {
    animation: none;
  }
}

.portfolio-video-card {
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.portfolio-video-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.portfolio-video-card .track-card-overlay {
  pointer-events: none;
}

.video-card-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-card-slide.is-active {
  opacity: 1;
}

.portfolio-video-card .track-card-overlay > strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text-main);
  font-size: clamp(1rem, 1.5vh, 1.6rem);
  font-weight: 700;
  line-height: 1.15;
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(8, 10, 15, 0.68);
  color: #fff;
  font-size: 1.55rem;
  opacity: 0.82;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: var(--transition-smooth);
}

.portfolio-video-card:hover .video-card-play,
.portfolio-video-card:focus-visible .video-card-play {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.86);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}

body.video-modal-open {
  overflow: hidden;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 9, 0.84);
  backdrop-filter: blur(10px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #090c12;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  animation: video-modal-enter 220ms ease-out both;
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-header h3 {
  margin: 0;
  font-size: 1rem;
}

.video-modal-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.video-modal-frame-wrap {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes video-modal-enter {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Fluid Footer */
.fluid-footer {
  background: #04060a;
  padding: 32px 4%;
  border-top: 1px solid var(--border-color);
}

.footer-fluid-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-fluid-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.footer-fluid-links {
  display: flex;
  gap: 32px;
}

.fluid-footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.fluid-footer-link:hover, .fluid-footer-link.active {
  color: var(--primary);
}

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

/* Animation utilities */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up-animation 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fade-up-animation {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .services-fluid-row {
    flex-direction: column;
    min-height: auto;
  }
  .service-fluid-box {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 60px 4%;
  }
  .service-fluid-box:last-child {
    border-bottom: none;
  }
  .service-fluid-box:hover {
    flex: 1;
  }
}

@media (max-width: 992px) {
  .fluid-content-grid {
    grid-template-cols: 1fr;
    gap: 40px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 16px;
  }
  .hero-mockup-wrapper {
    height: 300px;
    margin-top: 48px;
  }
  .hero-mockup {
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-main);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .form-row-fluid {
    grid-template-cols: 1fr;
    gap: 0;
  }
  .fluid-contact-form {
    padding: 24px;
  }
  .footer-fluid-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }
  .footer-fluid-links {
    flex-direction: column;
    gap: 16px;
  }
  .portfolio-track-card {
    height: clamp(110px, 24vw, 160px);
    aspect-ratio: 250 / 159;
    width: auto;
  }
  .track-card-overlay {
    padding: 14px;
  }
}

/* Floating Back to Top Button */
.back-to-top-btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  box-shadow: none;
}

.back-to-top-btn i {
  line-height: 1;
}

.back-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
  transform: translateY(-3px);
}

.back-to-top-btn:focus-visible {
  color: #fff;
  border-color: #fff;
  outline: 1px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .back-to-top-btn {
    right: 16px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Active filter state */
.portfolio-badge.active {
  background: var(--primary);
  color: var(--bg-main);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.35);
}

.portfolio-badge.active i {
  color: var(--bg-main);
}

/* Dimmed non-matching cards */
.portfolio-track-card.dimmed {
  opacity: 0.12;
  filter: grayscale(1) blur(1px);
  pointer-events: none;
}

/* Hero Section Abstract Loop Background */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  will-change: transform, opacity;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 76%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 76%, transparent 100%);
}

.hero-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  will-change: transform, opacity;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0, 0, 0, 0.68) 74%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0, 0, 0, 0.68) 74%, transparent 100%);
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
  mix-blend-mode: screen;
  animation: floatBlob 25s infinite alternate ease-in-out;
}

.blob-1 {
  top: -10%;
  left: 15%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--primary) 0%, rgba(0,0,0,0) 70%);
  animation-duration: 20s;
}

.blob-2 {
  bottom: -15%;
  right: 20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, #8224e3 0%, rgba(0,0,0,0) 70%);
  animation-duration: 30s;
  animation-delay: -5s;
}

.blob-3 {
  top: 30%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.45) 0%, rgba(0,0,0,0) 70%);
  animation-duration: 25s;
  animation-delay: -10s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(6%, 12%) scale(1.15) rotate(180deg);
  }
  100% {
    transform: translate(-6%, -6%) scale(0.9) rotate(360deg);
  }
}

/* Footer social links */
.footer-social-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer-social-link {
  color: var(--text-secondary);
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.4));
}
