/* CREATIVE SHOWCASE — ported from index.html inline styles + css/style.css */
.creative-showcase-section {
  background: var(--bg3);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cs-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
}
.cs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}
.cs-title {
  margin-bottom: 20px;
}
.cs-desc {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 420px;
}
.cs-feat-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cs-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cs-feat-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-g);
  background: var(--glow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  transition: background 0.3s;
}
.cs-feat:hover .cs-feat-icon {
  background: var(--glow-sm);
}
.cs-feat-title {
  font-family: var(--ff-h);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.cs-feat-desc {
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 300;
}
.cs-globe-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.globe-wrap {
  position: relative;
  width: 360px;
  height: 360px;
}
#globe-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 360px;
  height: 360px;
  display: block;
}
.globe-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 229, 48, 0.2), rgba(110, 229, 48, 0.05));
  border: 1px solid rgba(110, 229, 48, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(110, 229, 48, 0.2);
}
.globe-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(110, 229, 48, 0.12);
}
.globe-ring-1 {
  width: 360px;
  height: 360px;
  animation: ringExpand 4s ease-in-out infinite;
}
.globe-ring-2 {
  width: 300px;
  height: 300px;
  animation: ringExpand 4s 1s ease-in-out infinite;
}
.globe-ring-3 {
  width: 240px;
  height: 240px;
  animation: ringExpand 4s 2s ease-in-out infinite;
}
.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(110, 229, 48, 0.8);
}
.od-1 {
  animation: orbit1 6s linear infinite;
}
.od-2 {
  animation: orbit2 9s linear infinite;
}
.od-3 {
  animation: orbit3 12s linear infinite;
}
.float-chip {
  position: absolute;
  font-family: var(--ff-h);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(7, 7, 12, 0.9);
  border: 1px solid rgba(110, 229, 48, 0.3);
  color: var(--green);
  padding: 6px 12px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.fc-1 {
  top: 6%;
  left: -8%;
  animation: chipFloat1 5s ease-in-out infinite;
}
.fc-2 {
  top: 20%;
  right: -12%;
  animation: chipFloat2 6s ease-in-out infinite;
}
.fc-3 {
  bottom: 20%;
  left: -14%;
  animation: chipFloat1 7s 1s ease-in-out infinite;
}
.fc-4 {
  bottom: 6%;
  right: -10%;
  animation: chipFloat2 5s 2s ease-in-out infinite;
}
@keyframes ringExpand {
  0%,
  100% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.03);
  }
}
@keyframes orbit1 {
  0% { top: calc(50% - 130px); left: 50%; transform: translateX(-50%); }
  25% { top: 50%; left: calc(50% + 130px); transform: translateY(-50%); }
  50% { top: calc(50% + 130px); left: 50%; transform: translateX(-50%); }
  75% { top: 50%; left: calc(50% - 130px); transform: translateY(-50%); }
  100% { top: calc(50% - 130px); left: 50%; transform: translateX(-50%); }
}
@keyframes orbit2 {
  0% { top: 50%; left: calc(50% + 160px); transform: translateY(-50%); }
  25% { top: calc(50% + 160px); left: 50%; transform: translateX(-50%); }
  50% { top: 50%; left: calc(50% - 160px); transform: translateY(-50%); }
  75% { top: calc(50% - 160px); left: 50%; transform: translateX(-50%); }
  100% { top: 50%; left: calc(50% + 160px); transform: translateY(-50%); }
}
@keyframes orbit3 {
  0% { top: calc(50% + 175px); left: 50%; transform: translateX(-50%); }
  25% { top: 50%; left: calc(50% - 175px); transform: translateY(-50%); }
  50% { top: calc(50% - 175px); left: 50%; transform: translateX(-50%); }
  75% { top: 50%; left: calc(50% + 175px); transform: translateY(-50%); }
  100% { top: calc(50% + 175px); left: 50%; transform: translateX(-50%); }
}
@keyframes chipFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes chipFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@media (max-width: 1380px) {
  .creative-showcase-section {
    padding: 90px 36px !important;
  }
}
@media (max-width: 1200px) {
  .globe-wrap,
  #globe-canvas {
    width: 320px !important;
    height: 320px !important;
  }
  .globe-ring-1 {
    width: 320px;
    height: 320px;
  }
  .globe-ring-2 {
    width: 260px;
    height: 260px;
  }
  .globe-ring-3 {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 1000px) {
  .cs-inner {
    gap: 40px !important;
  }
}
@media (max-width: 900px) {
  .cs-inner {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 700px) {
  .creative-showcase-section {
    padding: 70px 20px !important;
  }
  .cs-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .globe-wrap {
    width: 260px !important;
    height: 260px !important;
    margin: 0 auto;
  }
}
