:root {
  --primary-color: #000;
  --light: #ffffff;
  --dark: #000000;
  --gray: #999999;
}

/* Scope everything to the shortcode wrapper to avoid colliding with theme CSS */
.sixtythree-animations {
  position: relative;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  font-weight: normal;
  font-size: 40px;
  color: #000;
  width: 100%;
  max-width: 100vw;
}

.sixtythree-animations section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.sixtythree-animations,
.sixtythree-animations * {
  cursor: none;
}

.sixtythree-animations .button-navigator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* When the hero is in view, mimic the original "animated" theme state */
.sixtythree-animations.is-animated {
  color: #fff;
  --primary-color: #fff;
}

.myLargerText {
  color: #000;
}

.sixtythree-animations.is-animated .myLargerText {
  color: #fff;
}

.sixtythree-animations #blob_container {
  transition: background-color 0.3s linear;
  background-color: #0000 !important;
}

.sixtythree-animations.is-animated #blob_container {
  background-color: #000 !important;
}

/* Layout helpers used in the markup */
.sixtythree-animations .box {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.sixtythree-animations .container {
  position: relative;
  margin-bottom: 0;
  padding-left: clamp(18px, 4vw, 72px);
  padding-right: clamp(18px, 4vw, 72px);
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.sixtythree-animations .box-header {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 60px 0;
  transition: all 0.6s ease;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}

.sixtythree-animations.is-animated .box-header {
  min-height: 100vh;
  padding: 40px 0;
  overflow: visible;
}

@media (max-width: 768px) {
  .sixtythree-animations .box-header {
    height: 100vh;
    padding: 60px 0;
  }

  .sixtythree-animations.is-animated .box-header {
    min-height: 95vh;
  }
}

.sixtythree-animations h1 {
  margin: 0 0 30px 0;
  font-size: 3em;
  text-align: center;
  display: inline;
  font-family: Arial, Helvetica, sans-serif;
  transition: all 0.6s ease;
}

.sixtythree-animations.is-animated h1 {
  margin: 0 0 20px 0;
}

/* Prevent themes from forcing italic on <i> in the header */
.sixtythree-animations #intro i {
  font-style: normal;
  font-weight: 800;
}

.sixtythree-animations .hero-tagline {
  margin-top: 0;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: Arial, Helvetica, sans-serif;
  transition: margin-top 0.6s ease;
}

.sixtythree-animations.is-animated .hero-tagline {
  margin-top: 24px;
}

.sixtythree-animations .hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: bold;
  margin: 0 0 16px 0;
  color: var(--primary-color);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.05em;
}

.sixtythree-animations .hero-description {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 300;
  margin: 0;
  color: var(--primary-color);
  opacity: 0.85;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
}

.sixtythree-animations .hero-cta-first {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  transition: margin 0.6s ease;
}

.sixtythree-animations.is-animated .hero-cta-first {
  margin-top: 40px;
  margin-bottom: 40px;
}

.sixtythree-animations .hero-cta-animated {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  transition: color 0.3s ease;
}

.sixtythree-animations .hero-cta-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.sixtythree-animations .hero-cta-animated::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.5s ease;
}

.sixtythree-animations .hero-cta-animated:hover::after {
  left: 100%;
}

.sixtythree-animations .hero-cta-animated:hover {
  color: var(--primary-color);
}

.sixtythree-animations .hero-cta-animated span {
  position: relative;
  z-index: 1;
}

@keyframes borderMove {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }

  25% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  50% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }

  75% {
    clip-path: polygon(100% 100%, 0 100%, 0 100%, 100% 100%);
  }

  100% {
    clip-path: polygon(0 100%, 0 0, 0 0, 0 100%);
  }
}

.sixtythree-animations .hero-cta-animated:hover::before {
  animation: borderMove 1.5s linear infinite;
}

.sixtythree-animations .no-wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.sixtythree-animations .we-are-text {
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: clamp(0.15em, 0.3em, 0.3em);
  font-family: Arial, Helvetica, sans-serif;
}

.sixtythree-animations .we-are-line {
  width: clamp(50px, 15vw, 100px);
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
}

@media (min-width: 640px) {
  .sixtythree-animations .we-are-line {
    display: block;
  }
}

/* Scroll reveal (only hide-by-default when JS is available) */
html.js .sixtythree-animations .scroll-reveal,
html.js .sixtythree-animations [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(.22, .61, .36, 1) var(--reveal-delay, 0ms),
    transform 0.7s cubic-bezier(.22, .61, .36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.js .sixtythree-animations .scroll-reveal.is-inview,
html.js .sixtythree-animations [data-reveal].is-inview {
  opacity: 1;
  transform: none;
}

html.js .sixtythree-animations [data-reveal="fade"] {
  transform: none;
}

html.js .sixtythree-animations [data-reveal="left"] {
  transform: translateX(-16px);
}

html.js .sixtythree-animations [data-reveal="right"] {
  transform: translateX(16px);
}

html.js .sixtythree-animations [data-reveal="line"] {
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left;
}

html.js .sixtythree-animations [data-reveal="line"].is-inview {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {

  .sixtythree-animations .scroll-reveal,
  .sixtythree-animations [data-reveal] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Scroll down indicator */
.sixtythree-animations .scrolldown {
  position: absolute;
  bottom: 36px;
  left: 50%;
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
  width: 2px;
  height: 72px;
  z-index: 1;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 0.4s ease;
}

.sixtythree-animations.is-animated .scrolldown {
  opacity: 0;
  visibility: hidden;
}

.sixtythree-animations .scrolldown div {
  display: block;
  width: 2px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  will-change: transform;
  animation: sixtythree-lineY 2s ease-in-out infinite;
}

.sixtythree-animations.is-animated .scrolldown {
  background: rgba(255, 255, 255, 0.22);
}

.sixtythree-animations.is-animated .scrolldown div {
  background: #fff;
}

@media (max-width: 768px) {
  .sixtythree-animations .scrolldown {
    display: none;
  }
}

@keyframes sixtythree-lineY {
  0% {
    transform: translateY(-100%);
  }

  80% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* Hero section */
.sixtythree-animations .hero-container {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.sixtythree-animations .box-pres {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 10;
}

.sixtythree-animations .hero-main-text {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  margin: 0 0 32px 0;
  line-height: 1.35;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
}

.sixtythree-animations.is-animated .hero-main-text {
  color: #fff;
}

.sixtythree-animations .hero-cta-box {
  margin-top: 0;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s cubic-bezier(.25, .46, .45, .94), transform 0.6s cubic-bezier(.25, .46, .45, .94);
}

.sixtythree-animations .hero-cta-box.is-cta-in {
  opacity: 1;
  transform: translateY(0);
  font-family: Arial, Helvetica, sans-serif;
}

.sixtythree-animations .hero-cta {
  margin: 0;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.sixtythree-animations .hero-cta-link-main {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 2px solid currentColor;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
}

.sixtythree-animations .hero-cta-link-main:hover {
  background: currentColor;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sixtythree-animations.is-animated .hero-cta-link-main:hover {
  color: var(--light);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.sixtythree-animations .hero-cta-lead {
  font-weight: 600;
}

.sixtythree-animations .hero-cta-arrow {
  font-size: 1.3em;
  transition: transform 0.3s ease;
}

.sixtythree-animations .hero-cta-link-main:hover .hero-cta-arrow {
  transform: translateX(4px);
}

/* Hide the delegato sentinel section since it's just for JS detection */
.sixtythree-animations section:has(#delegato-testo-1) {
  height: 100vh;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* Category background and buttons */
.sixtythree-animations .category-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  background-size: cover;
  background-position: center;
}

.sixtythree-animations .category-bg.active {
  opacity: 0.3;
}

.sixtythree-animations .category-nav-left {
  position: absolute !important;
  bottom: 40px !important;
  left: 40px !important;
  display: flex !important;
  align-items: center;
  gap: 0;
  z-index: 9999 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.sixtythree-animations .stats-nav-right {
  position: absolute !important;
  bottom: 40px !important;
  right: 40px !important;
  display: flex !important;
  align-items: center;
  gap: 0;
  z-index: 9999 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.sixtythree-animations .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.sixtythree-animations .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
}

.sixtythree-animations .stat-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 400;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .sixtythree-animations .box-header {
    height: 100vh;
    min-height: 100vh;
    padding: 60px 0;
  }

  .sixtythree-animations.is-animated .box-header {
    min-height: 100vh;
  }

  .sixtythree-animations .category-nav-left {
    bottom: 100px !important;
    left: 20px;
  }

  .sixtythree-animations .stats-nav-right {
    bottom: 24px;
    right: 20px;
  }

  .sixtythree-animations .stat-item {
    padding: 0 12px;
  }

  .sixtythree-animations .stat-number {
    font-size: 20px;
  }

  .sixtythree-animations .stat-label {
    font-size: 8px;
  }

  .sixtythree-animations .scrolldown {
    display: none;
  }
}

.sixtythree-animations .category-btn {
  position: relative;
  cursor: none;
  background: transparent;
  border: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  padding: 10px 20px;
  font-family: Arial, Helvetica, sans-serif;
  transition: opacity 0.3s ease;
  font-weight: 400;
}

.sixtythree-animations .category-btn:hover {
  opacity: 1;
}

.sixtythree-animations .category-btn.is-active {
  opacity: 1;
  font-weight: 600;
}

.sixtythree-animations .category-separator {
  width: 1px;
  height: 16px;
  background: var(--primary-color);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .sixtythree-animations .category-btn {
    font-size: 10px;
    padding: 8px 12px;
    letter-spacing: 1.5px;
  }

  .sixtythree-animations .category-separator {
    height: 12px;
  }
}

/* Lock body scroll when overlay is active */
body.overlay-active {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

/* Overlays */
.sixtythree-animations .category-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  overflow-y: auto !important;
  z-index: 99999999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  font-family: Arial, Helvetica, sans-serif;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.sixtythree-animations .category-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sixtythree-animations .brand-overlay {
  background: linear-gradient(135deg, #ffff 0%, #ffff 100%);
}

.sixtythree-animations .digital-overlay {
  background: linear-gradient(135deg, #ff4800 0%, #ff4800 100%);
}

.sixtythree-animations .product-overlay {
  background: linear-gradient(135deg, #ffd54c 0%, #ffd54c 100%);
}

.sixtythree-animations .close-overlay {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: white;
  font-size: 40px;
  line-height: 1;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10001;
}

@media (max-width: 768px) {
  .sixtythree-animations .close-overlay {
    top: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 32px;
  }
}

/* Overlay Navigation (Prev/Next) */
.sixtythree-animations .overlay-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 24px;
  align-items: center;
  z-index: 10002;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.sixtythree-animations .category-overlay.active .overlay-nav {
  opacity: 1;
  transform: translateY(0);
}

.sixtythree-animations .overlay-nav-btn {
  background: none;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s ease;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0;
  opacity: 0.7;
}

.sixtythree-animations .overlay-nav-btn:hover {
  opacity: 1;
}

/* Brand overlay - white background needs dark text */
.sixtythree-animations .brand-overlay .overlay-nav-btn {
  color: #000;
  opacity: 0.7;
}

.sixtythree-animations .brand-overlay .overlay-nav-btn:hover {
  opacity: 1;
}

/* Product overlay - yellow background needs dark text */
.sixtythree-animations .product-overlay .overlay-nav-btn {
  color: #000;
  opacity: 0.7;
}

.sixtythree-animations .product-overlay .overlay-nav-btn:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .sixtythree-animations .overlay-nav {
    bottom: 20px;
    right: 20px;
    gap: 16px;
  }

  .sixtythree-animations .overlay-nav-btn {
    font-size: 12px;
  }
}

.sixtythree-animations .overlay-content {
  text-align: start;
  color: white;
  transform: translateY(50px);
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: all 0.6s cubic-bezier(.25, .46, .45, .94) 0.2s;
  max-width: 100vw;
  padding: 40px 60px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.sixtythree-animations .category-overlay.active .overlay-content {
  transform: translateY(0);
  opacity: 1;
  font-family: Arial, Helvetica, sans-serif;
}

.sixtythree-animations .overlay-content h2 {
  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 60px 0;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
}

.sixtythree-animations .overlay-content ul {
  list-style: none;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

.sixtythree-animations .overlay-content li {
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  font-weight: 300;
  margin: 25px 0;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(.25, .46, .45, .94);
  line-height: 1.4;
}

.sixtythree-animations .category-overlay.active .overlay-content li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.sixtythree-animations .category-overlay.active .overlay-content li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.sixtythree-animations .category-overlay.active .overlay-content li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.sixtythree-animations .category-overlay.active .overlay-content li:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

/* Brand overlay split layout (left big label + yellow bars / right rotated orange panel) */
.sixtythree-animations .category-overlay .overlay-content {
  /* Default: full-bleed on typical desktop and smaller screens */
  width: 100vw;
  max-width: none;
  padding: 0 40px;
  margin: 0;
  position: relative;
  display: flex;
  gap: clamp(20px, 4vw, 64px);
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: visible;
  /* allow the chain to extend outside without affecting layout */
}

/* Constrain and center only on very large screens */
@media (min-width: 1400px) {
  .sixtythree-animations .category-overlay .overlay-content {
    max-width: 1400px;
    width: calc(100% - 80px);
    margin: 0 auto;
  }
}

.sixtythree-animations .overlay-content .left_decorative,
.sixtythree-animations .overlay-content .right_decorative {
  /* use fixed-ish flex-basis so the two panels stay close together on large screens */
  flex: 0 1 48%;
  min-width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sixtythree-animations .overlay-content .brand {
  flex: 0 1 48%;
}

/* Left side: big BRAND heading and bars */
.sixtythree-animations .left_decorative {
  text-align: left;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
}


.sixtythree-animations .brand_header {
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: start;
  min-height: 0px;
}

/* keep top heading at top and bars stuck to the bottom */
.sixtythree-animations .left_bottom_decorative {
  position: relative;
  bottom: 0;
}

.sixtythree-animations .left_top_decorative h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  margin: 0;
  color: #ef4b00;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 0.9;
}

.sixtythree-animations .brand_bars_container {
  display: flex;
  gap: 72px;
  margin-top: 36px;
  align-items: flex-end;
}

.sixtythree-animations .brand_bars_container>div {
  display: flex;
  gap: 18px;
  align-items: flex-end;
}

/* Bars initial state (collapsed) and visual styling */
.sixtythree-animations .brand_bar {
  width: 28px;
  border-radius: 2px;
  background: #ffd54c;
  /* yellow */
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.03);
  transform-origin: bottom;
  transform: scaleY(0);
  opacity: 0;
}

/* Individual heights (slight variation for visual rhythm) */
.sixtythree-animations .brand_bar.bar_one {
  height: 148px;
}

.sixtythree-animations .brand_bar.bar_two {
  height: 148px;
}

.sixtythree-animations .brand_bar.bar_three {
  height: 148px;
}

.sixtythree-animations .brand_bar.bar_four {
  height: 148px;
}

.sixtythree-animations .brand_bar.bar_five {
  height: 148px;
}

.sixtythree-animations .brand_bar.bar_six {
  height: 148px;
}

.sixtythree-animations .brand_bar.bar_seven {
  height: 148px;
}

.sixtythree-animations .brand_bar.bar_eight {
  height: 148px;
}

.sixtythree-animations .brand_bar.bar_nine {
  height: 148px;
  background: linear-gradient(180deg, #ffd98c 0%, #ffd98c 100%);
}

/* Bar grow animation */
@keyframes barGrow {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  60% {
    transform: scaleY(1.06);
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Trigger the animation when overlay opens; stagger timings for a pleasing rhythm */
.sixtythree-animations .category-overlay.active .brand_bar {
  animation: barGrow 700ms cubic-bezier(.22, .61, .36, 1) forwards;
}

/* Stagger for first group of 6 bars */
.sixtythree-animations .brand_bars_container>div:first-child .brand_bar:nth-child(1) {
  animation-delay: 0.08s;
}

.sixtythree-animations .brand_bars_container>div:first-child .brand_bar:nth-child(2) {
  animation-delay: 0.16s;
}

.sixtythree-animations .brand_bars_container>div:first-child .brand_bar:nth-child(3) {
  animation-delay: 0.24s;
}

.sixtythree-animations .brand_bars_container>div:first-child .brand_bar:nth-child(4) {
  animation-delay: 0.32s;
}

.sixtythree-animations .brand_bars_container>div:first-child .brand_bar:nth-child(5) {
  animation-delay: 0.40s;
}

.sixtythree-animations .brand_bars_container>div:first-child .brand_bar:nth-child(6) {
  animation-delay: 0.48s;
}

/* Add extra spacing between the group of 6 and the group of 3 (already covered by gap above)
   Stagger for second group of 3 to start shortly after the first group */
.sixtythree-animations .brand_bars_container>div:nth-child(2) .brand_bar:nth-child(1) {
  animation-delay: 0.70s;
}

.sixtythree-animations .brand_bars_container>div:nth-child(2) .brand_bar:nth-child(2) {
  animation-delay: 0.78s;
}

.sixtythree-animations .brand_bars_container>div:nth-child(2) .brand_bar:nth-child(3) {
  animation-delay: 0.86s;
}

/* Right panel: rotated orange box with list */
.sixtythree-animations .right_decorative {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.sixtythree-animations .right_top_decorative .panel {
  position: relative;
  width: 100%; 
  background: #ed3a00;
  padding: 6px 34px 10px 102px;
  box-shadow: 0 24px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
   --p: 70px;
  clip-path: polygon(
      var(--p) 0,
      100% 0,
      100% 100%,
      0 100%
    );
}

@media (max-width: 900px) {
  .sixtythree-animations .right_top_decorative .panel {
     --p: 0px;
  clip-path: polygon(
      var(--p) 0,
      100% 0,
      100% 100%,
      0 100%
    );
  }
}

.sixtythree-animations .right_top_decorative .panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.sixtythree-animations .right_top_decorative .panel li {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  margin: 24px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Decorative white circular "eye" */
.sixtythree-animations .decorative-circle {
  position: absolute;
  right: 6px;
  top: 49%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sixtythree-animations .brand_right_bottom_decorative {
  position: absolute;
  right: 0;
  top: 49%;
  transform: translateY(-119%) translateX(115px);
}

@media (max-width: 1445px) {
  .sixtythree-animations .brand_right_bottom_decorative {
    transform:translateY(-114%) translateX(132px);
  }
}
/* .sixtythree-animations .decorative-circle::after {
  content: '';
  width: 26px;
  height: 26px;
  background: #ed3a00;
  border-radius: 50%;
  transform: translateX(1px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
} */

/* Decorative curved chain image to the right of the panel */
.sixtythree-animations .right_bottom_decorative {
  /* position: absolute;
  right: -94px;
  top: 30%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: none; */

  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: none;
  position: absolute;
  right: 40%;
  bottom: -100px;
}



.sixtythree-animations .dash-line {
  position: absolute;
    right: -21%;
    top: 12%;
  width: 240px;
  height: 120px;
  background-image: url('http://63create.web/wp-content/uploads/2026/01/63-web-assets_brand_chain_orange.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.95;
  transform-origin: center;
}

.sixtythree-animations .dash-line.line-one {
  transform: rotate(-12deg) translateX(8px) translateY(-6px);
}

.sixtythree-animations .dash-line.line-two {
  transform: rotate(-8deg) translateX(12px);
  opacity: 0.9;
}

.sixtythree-animations .dash-line.line-three {
  transform: rotate(-4deg) translateX(18px) translateY(6px);
  opacity: 0.75;
}

/* Responsiveness */
@media (max-width: 900px) {

  .sixtythree-animations .dash-line {
    display:none;

  }
  .sixtythree-animations .left_decorative {
    padding: 12px 12px;
    justify-content: start;
    min-height: auto;
  }

  .sixtythree-animations .right_decorative {
    padding: 0px 0px;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
  }

  .sixtythree-animations .right_decorative .right_top_decorative {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
  }

  .sixtythree-animations .dash-line {
    display: none;
  }

  /* Stack and center content; make overlay content fluid so panels can fit */
  .sixtythree-animations .overlay-content {
    flex-direction: column;
    align-items: start;
    gap: 18px;
    padding: 14px;
    width: 100%;
    max-width: 720px;
    box-sizing: border-box;
    min-height: auto;
  }

  .sixtythree-animations .left_top_decorative h2 {
    font-size: clamp(3rem, 8vw, 5rem);
    text-align: start;
    margin-bottom: 8px;
  }

  .sixtythree-animations .brand_bars_container {
    justify-content: start;
    margin-top: 8px;
  }

  /* Ensure the orange panel fits the available width and uses box-sizing */
  .sixtythree-animations .right_top_decorative .panel {
    transform: none;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .sixtythree-animations .decorative-circle {
    /* display: none; */
  }

  .sixtythree-animations .right_bottom_decorative {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 12px;
  }

  .sixtythree-animations .dash-line {
    width: 160px;
    height: 80px;
    background-size: contain;
    transform: none;
  }
}

/* Small devices tweaks */
@media (max-width: 480px) {
  .sixtythree-animations .left_decorative {
    padding: 12px 12px;
  }

  .sixtythree-animations .left_top_decorative h2 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
    margin-top: 0;
  }

  /* Hide all decorative bars on mobile for better text visibility */
  .sixtythree-animations .brand_bars_container {
    display: none !important;
  }

  .sixtythree-animations .product-fan {
    display: none !important;
  }

  .sixtythree-animations .product-bars {
    display: none !important;
  }

  .sixtythree-animations .dash-line {
    display: none;
  }

  .sixtythree-animations .right_top_decorative .panel {
    padding: 14px 12px;
    margin-top: 0;
  }

  .sixtythree-animations .right_top_decorative .panel li {
    font-size: clamp(0.85rem, 3.6vw, 0.95rem);
    margin: 14px 0;
  }

  .sixtythree-animations .dash-line,
  .sixtythree-animations .right_bottom_decorative {
    display: none;
  }

  .sixtythree-animations .category-overlay .overlay-content {
    padding: 8px 12px;
    gap: 12px;
  }

  /* Faster, tighter bar animation on small devices */
  .sixtythree-animations .category-overlay.active .brand_bar {
    animation-duration: 500ms;
  }

  .sixtythree-animations .brand_bars_container>div:first-child .brand_bar:nth-child(1) {
    animation-delay: 0.04s;
  }

  .sixtythree-animations .brand_bars_container>div:first-child .brand_bar:nth-child(2) {
    animation-delay: 0.08s;
  }

  .sixtythree-animations .brand_bars_container>div:first-child .brand_bar:nth-child(3) {
    animation-delay: 0.12s;
  }

  .sixtythree-animations .brand_bars_container>div:first-child .brand_bar:nth-child(4) {
    animation-delay: 0.16s;
  }

  .sixtythree-animations .brand_bars_container>div:first-child .brand_bar:nth-child(5) {
    animation-delay: 0.20s;
  }

  .sixtythree-animations .brand_bars_container>div:first-child .brand_bar:nth-child(6) {
    animation-delay: 0.24s;
  }

  .sixtythree-animations .brand_bars_container>div:nth-child(2) .brand_bar:nth-child(1) {
    animation-delay: 0.30s;
  }

  .sixtythree-animations .brand_bars_container>div:nth-child(2) .brand_bar:nth-child(2) {
    animation-delay: 0.34s;
  }

  .sixtythree-animations .brand_bars_container>div:nth-child(2) .brand_bar:nth-child(3) {
    animation-delay: 0.38s;
  }

  .sixtythree-animations .close-overlay {
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    font-size: 28px;
  }
}

/* DIGITAL overlay styles */
.sixtythree-animations .digital-overlay .overlay-content {
  display: flex;
  gap: clamp(24px, 4vw, 96px);
  align-items: start;
  justify-content: start;
  width: 100%;
  padding: 36px;
  box-sizing: border-box;
}

.sixtythree-animations .digital-overlay .left_decorative {
  text-align: left;
  padding: 24px 12px;
}

.sixtythree-animations .digital-overlay .left_decorative .brand {
  text-align: left;
  padding: 0px;
}

.sixtythree-animations .digital-overlay .left_top_decorative h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  margin: 0 0 18px 0;
  color: #febb14;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.sixtythree-animations .digital-overlay .brand_bars_container {
  margin-top: 12px;
  justify-content: flex-start;
}

.sixtythree-animations .digital-overlay .brand_bars_container>div {
  gap: 12px;
}

.sixtythree-animations .digital-overlay .brand_bar {
  background: #000;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.18);
}

.sixtythree-animations .digital-overlay .brand_bar.bar_nine {
  background: linear-gradient(180deg, #5a1f00 0%, #5a1f00 100%);
}

.sixtythree-animations .digital-overlay .right_decorative {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  padding: 0 24px;
}

.sixtythree-animations .digital-overlay .right_decorative .right_content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sixtythree-animations .digital-overlay .right_decorative .right_content li {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1rem, 2.6vw, 1.5rem);
  margin: 24px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .sixtythree-animations .digital-overlay .overlay-content {
    flex-direction: column;
    padding: 18px;
  }

  .sixtythree-animations .digital-overlay .right_decorative {
    width: 100%;
  }

  .sixtythree-animations .digital-overlay .right_decorative .right_content li {
    text-align: start;
  }

  .sixtythree-animations .digital-overlay .left_top_decorative h2 {
    text-align: start;
  }
}

@media (max-width: 480px) {
  .sixtythree-animations .digital-overlay .left_top_decorative h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .sixtythree-animations .digital-overlay .right_decorative .right_content li {
    font-size: clamp(0.9rem, 3.2vw, 0.95rem);
    margin: 12px 0;
  }
}

/* DIGITAL overlay list animations */
.sixtythree-animations .digital-overlay .right_decorative .right_content li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s cubic-bezier(.22, .61, .36, 1), transform 0.5s cubic-bezier(.22, .61, .36, 1);
}

.sixtythree-animations .digital-overlay.active .right_decorative .right_content li:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}

.sixtythree-animations .digital-overlay.active .right_decorative .right_content li:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}

.sixtythree-animations .digital-overlay.active .right_decorative .right_content li:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.38s;
}

.sixtythree-animations .digital-overlay.active .right_decorative .right_content li:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.48s;
}




/* PRODUCT overlay styles */
.sixtythree-animations .product-overlay {
  background: linear-gradient(135deg, #f5b918 0%, #f5b918 100%);
}

.sixtythree-animations .product-overlay .overlay-content {
  display: flex;
  gap: clamp(24px, 6vw, 120px);
  align-items: stretch;
  padding: 36px;
  box-sizing: border-box;
}

.sixtythree-animations .product-overlay .left_decorative {
  /* padding: 24px 12px; */
}

.sixtythree-animations .product-overlay .left_top_decorative h2 {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900;
  margin: 0 0 18px 0;
  color: #ed3a00;
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* Decorative fan - 6 slices */
.sixtythree-animations .product-fan {
  /* position: relative; */
  /* width: 420px;
  height: 280px; */
  display: flex;
  pointer-events: none;
}

.sixtythree-animations .product-fan .fan-slice {
  /* position: absolute;
  bottom: 0;
  left: 0; */
  width: 90px;
  height: 260px;
  transform-origin: bottom left;
  border-radius: 4px;
  background: linear-gradient(180deg, #ec3a00 0%, #f5b918 100%);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.06);
  opacity: 0;
}

/* Fan slice grow animations - preserve rotation and translation */
@keyframes fanGrow1 {
  0% {
    opacity: 0;
    transform: rotate(-80deg) translateX(-60px) translateY(35px) scaleY(0);
  }

  60% {
    opacity: 1;
    transform: rotate(-80deg) translateX(-60px) translateY(35px) scaleY(1.08);
  }

  100% {
    opacity: 1;
    transform: rotate(-80deg) translateX(-60px) translateY(35px) scaleY(1);
  }
}

@keyframes fanGrow2 {
  0% {
    opacity: 0;
    transform: rotate(-62deg) translateX(-40px) translateY(25px) scaleY(0);
  }

  60% {
    opacity: 1;
    transform: rotate(-62deg) translateX(-40px) translateY(25px) scaleY(1.08);
  }

  100% {
    opacity: 1;
    transform: rotate(-62deg) translateX(-40px) translateY(25px) scaleY(1);
  }
}

@keyframes fanGrow3 {
  0% {
    opacity: 0;
    transform: rotate(-43deg) translateX(-30px) translateY(6px) scaleY(0);
  }

  60% {
    opacity: 1;
    transform: rotate(-43deg) translateX(-30px) translateY(6px) scaleY(1.08);
  }

  100% {
    opacity: 1;
    transform: rotate(-43deg) translateX(-30px) translateY(6px) scaleY(1);
  }
}

@keyframes fanGrow4 {
  0% {
    opacity: 0;
    transform: rotate(-26deg) translateX(-50px) translateY(-18px) scaleY(0);
  }

  60% {
    opacity: 1;
    transform: rotate(-26deg) translateX(-50px) translateY(-18px) scaleY(1.08);
  }

  100% {
    opacity: 1;
    transform: rotate(-26deg) translateX(-50px) translateY(-18px) scaleY(1);
  }
}

@keyframes fanGrow5 {
  0% {
    opacity: 0;
    transform: rotate(-13deg) translateX(-70px) translateY(-18px) scaleY(0);
  }

  60% {
    opacity: 1;
    transform: rotate(-13deg) translateX(-70px) translateY(-18px) scaleY(1.08);
  }

  100% {
    opacity: 1;
    transform: rotate(-13deg) translateX(-70px) translateY(-18px) scaleY(1);
  }
}

@keyframes fanGrow6 {
  0% {
    opacity: 0;
    transform: rotate(0deg) translateX(-80px) translateY(-18px) scaleY(0);
  }

  60% {
    opacity: 1;
    transform: rotate(0deg) translateX(-80px) translateY(-18px) scaleY(1.08);
  }

  100% {
    opacity: 1;
    transform: rotate(0deg) translateX(-80px) translateY(-18px) scaleY(1);
  }
}

.sixtythree-animations .product-fan .slice-1 {
  transform: rotate(-80deg) translateX(-60px) translateY(35px) scaleY(0);
}

.sixtythree-animations .product-fan .slice-2 {
  transform: rotate(-62deg) translateX(-40px) translateY(25px) scaleY(0);
}

.sixtythree-animations .product-fan .slice-3 {
  transform: rotate(-43deg) translateX(-18px) translateY(16px) scaleY(0);
}

.sixtythree-animations .product-fan .slice-4 {
  transform: rotate(-26deg) translateX(10px) translateY(8px) scaleY(0);
}

.sixtythree-animations .product-fan .slice-5 {
  transform: rotate(-13deg) translateX(38px) translateY(3px) scaleY(0);
}

.sixtythree-animations .product-fan .slice-6 {
  transform: rotate(0deg) translateX(68px) translateY(0px) scaleY(0);
}

.sixtythree-animations .product-overlay.active .product-fan .slice-1 {
  animation: fanGrow1 700ms cubic-bezier(.22, .61, .36, 1) forwards 0.1s;
}

.sixtythree-animations .product-overlay.active .product-fan .slice-2 {
  animation: fanGrow2 700ms cubic-bezier(.22, .61, .36, 1) forwards 0.18s;
}

.sixtythree-animations .product-overlay.active .product-fan .slice-3 {
  animation: fanGrow3 700ms cubic-bezier(.22, .61, .36, 1) forwards 0.26s;
}

.sixtythree-animations .product-overlay.active .product-fan .slice-4 {
  animation: fanGrow4 700ms cubic-bezier(.22, .61, .36, 1) forwards 0.34s;
}

.sixtythree-animations .product-overlay.active .product-fan .slice-5 {
  animation: fanGrow5 700ms cubic-bezier(.22, .61, .36, 1) forwards 0.42s;
}

.sixtythree-animations .product-overlay.active .product-fan .slice-6 {
  animation: fanGrow6 700ms cubic-bezier(.22, .61, .36, 1) forwards 0.5s;
}

/* Right-side list */
.sixtythree-animations .product-overlay .right_decorative {
  /* position: relative; */
  /* padding: 24px; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1;
}

.sixtythree-animations .product-overlay .right_decorative .right_content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sixtythree-animations .product-overlay .right_decorative .right_content li {
  color: #000;
  font-weight: 900;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  margin: 24px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* 3 straight bars on the right bottom */
.sixtythree-animations .product-overlay .right_bottom_decorative {
  margin-top: auto;
}

.sixtythree-animations .product-overlay .product-bars {
  display: flex;
  gap: 24px;
  align-items: flex-end;
}

.sixtythree-animations .product-overlay .product_bar {
  width: 42px;
  height: 180px;
  background: #ed3a00;
  border-radius: 2px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sixtythree-animations .product-overlay.active .product_bar {
  transform: scaleY(1);
}

.sixtythree-animations .product-overlay.active .product_bar.pb_one {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}

.sixtythree-animations .product-overlay.active .product_bar.pb_two {
  animation-delay: 0.3s;
  transition-delay: 0.3s;
}

.sixtythree-animations .product-overlay.active .product_bar.pb_three {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}

/* Bottom-attached bars (legacy - can be removed) */
.sixtythree-animations .product-bars {
  position: absolute;
  right: 40px;
  bottom: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-end;
}

.sixtythree-animations .product-bars .product_bar {
  width: 84px;
  height: 220px;
  background: linear-gradient(180deg, #ed3a00 0%, #fca326 100%);
  border-radius: 4px;
  box-shadow: 0 12px 8px rgba(0, 0, 0, 0.06);
}

.sixtythree-animations .product-bars .pb_two {
  height: 220px;
}

.sixtythree-animations .product-bars .pb_three {
  height: 220px;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .sixtythree-animations .product-overlay .overlay-content {
    flex-direction: column;
    padding: 18px;
  }

  .sixtythree-animations .product-overlay .left_decorative {
    width: 100%;
  }

  .sixtythree-animations .product-overlay .product-fan {
    width: 100%;
    height: 160px;
    transform: none;
    display: flex;
    justify-content: center;
  }

  .sixtythree-animations .product-overlay .product-bars {
    position: static;
    margin-top: 24px;
    justify-content: center;
  }

  .sixtythree-animations .product-overlay .right_decorative .right_content li {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sixtythree-animations .product-overlay .left_top_decorative h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .sixtythree-animations .product-overlay .product-bars {
    display: none;
  }
}


@media (max-width: 906px) {
  .sixtythree-animations .right_bottom_decorative {
    display: none;
  }

  .sixtythree-animations .left_bottom_decorative {
    display: none;
  }

  .sixtythree-animations .product-overlay .right_decorative {
    padding: 0;
    align-items: center;
  }

  .sixtythree-animations .digital-overlay .right_decorative .right_content li {
    text-align: center;
  }
}

/* Cursor */
/* .sixtythree-animations .cursor{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100000;
}

.sixtythree-animations .cursor__inner {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 70%;
  mix-blend-mode: difference;
  will-change: opacity;
  backface-visibility: hidden;
  z-index:100001;
}

.sixtythree-animations .cursor-dot {
  width: 20px;
  height: 20px;
  background-color: #fff;
  backface-visibility: hidden;
}

.sixtythree-animations .cursor-circle {
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
  backface-visibility: hidden;
} */