/* Invisible scrollbar but keep functionality */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 79, 216, 0.14), transparent 25%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #070312 0%, #0c0618 45%, #09040f 100%);
}

.hero-gradient {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 79, 216, 0.16), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 70% 75%, rgba(255, 79, 216, 0.12), transparent 22%);
}

.site-logo {
  display: block;
  object-fit: contain;
}

.site-logo-nav {
  width: 2.35rem;
  height: 2.35rem;
  filter: drop-shadow(0 0 20px rgba(255, 79, 216, 0.28));
}

.site-logo-footer {
  width: 2rem;
  height: 2rem;
}

.menu-open {
  overflow: hidden;
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fdf7ff;
  font-size: 1.25rem;
}

.mobile-menu {
  padding-bottom: 1rem;
}

.mobile-menu-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background: rgba(11, 5, 22, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.32);
}

.mobile-nav-link,
.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 9999px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.mobile-nav-link {
  color: #ddd3e4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav-cta {
  color: #070312;
  background: linear-gradient(135deg, #ff4fd8, #ff78e1);
}

::selection {
  background: rgba(255, 79, 216, 0.32);
  color: #fff;
}

@keyframes drift {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-100px) rotate(360deg); }
}

.bg-particle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 183, 242, 0.28) 0%, rgba(255, 79, 216, 0.07) 64%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(0.4px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffb7f2;
}

.section-kicker::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #ffffff, #ff4fd8);
  box-shadow: 0 0 20px rgba(255, 79, 216, 0.6);
}

.hero-orbits {
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 183, 242, 0.12);
  border-radius: 9999px;
  box-shadow: inset 0 0 48px rgba(255, 79, 216, 0.04);
}

.hero-orbit-a {
  width: 38rem;
  height: 38rem;
  right: -10rem;
  top: 6rem;
}

.hero-orbit-b {
  width: 26rem;
  height: 26rem;
  right: 8rem;
  top: 12rem;
}

.hero-orbit-c {
  width: 52rem;
  height: 52rem;
  left: -24rem;
  bottom: -28rem;
}

.hero-chip-row,
.capability-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-chip-row {
    justify-content: flex-start;
  }
}

.hero-chip,
.capability-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #f1e8f6;
  font-size: 0.86rem;
  backdrop-filter: blur(14px);
}

.hero-chip::before,
.capability-chip::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: #ff4fd8;
  box-shadow: 0 0 16px rgba(255, 79, 216, 0.7);
}

.hero-proof {
  display: grid;
  gap: 1rem;
}

.hero-proof-copy {
  color: #c9bfd0;
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 42rem;
}

.hero-logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 34rem;
}

.hero-logo {
  width: 100%;
  height: 3rem;
  object-fit: contain;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-logo-vectuel {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.hero-scene-shell {
  position: relative;
}

.hero-scene {
  position: relative;
  min-height: 35rem;
  border-radius: 1.85rem;
  overflow: hidden;
  border: 1px solid rgba(255, 183, 242, 0.18);
  background: linear-gradient(145deg, rgba(21, 10, 36, 0.96), rgba(7, 3, 18, 0.94));
  box-shadow:
    0 24px 80px rgba(2, 6, 23, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 79, 216, 0.08);
}

.hero-scene-content {
  position: relative;
  z-index: 2;
  min-height: 35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem;
}

.hero-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 2.8rem 2.8rem;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-scene::after {
  content: '';
  position: absolute;
  inset: auto -10% -25% auto;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.16), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 79, 216, 0.07) 48%, transparent 100%);
  mix-blend-mode: screen;
  animation: scanline 8s linear infinite;
  pointer-events: none;
}

@keyframes scanline {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

.hero-hud,
.audience-card,
.offer-card,
.support-card,
.capability-card,
.showcase-panel,
.client-logo-card,
.contact-band {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.28);
}

.hero-hud {
  position: relative;
  border-radius: 1.35rem;
}

.hero-hud-top {
  padding: 1.15rem 1.2rem 1rem;
  max-width: 26rem;
}

.hero-hud-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem;
}

.hero-floating-tags {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(14rem, 100%);
  align-self: flex-end;
  margin-right: 1rem;
}

.hero-hud-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #ffb7f2;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.hero-hud-title {
  color: #fdf7ff;
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-hud-text {
  color: #cec0d7;
  font-size: 0.94rem;
  line-height: 1.65;
}

.hero-floating-tag {
  position: relative;
  padding: 0.62rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 183, 242, 0.18);
  background: rgba(11, 5, 22, 0.82);
  color: #f4e9fa;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.25);
  backdrop-filter: blur(12px);
}

.hero-floating-tag-a { align-self: flex-start; }
.hero-floating-tag-b { align-self: flex-end; }
.hero-floating-tag-c { align-self: center; }

.hero-metric {
  padding: 0.95rem;
  border-radius: 1rem;
  background: rgba(7, 3, 18, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metric-label {
  display: block;
  color: #ffb7f2;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.hero-metric-value {
  display: block;
  color: #fdf7ff;
  font-size: 0.9rem;
  line-height: 1.5;
}

.audience-card,
.offer-card,
.support-card,
.capability-card,
.showcase-panel,
.contact-band {
  border-radius: 1.6rem;
}

.audience-card,
.offer-card,
.support-card {
  padding: 1.6rem;
}

.offer-card {
  position: relative;
  overflow: hidden;
}

.offer-card::after,
.support-card::after,
.contact-band::after {
  content: '';
  position: absolute;
  inset: auto -10% -18% auto;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.16), transparent 68%);
  pointer-events: none;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.offer-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #d7cddd;
  line-height: 1.6;
  font-size: 0.96rem;
}

.offer-list li::before {
  content: '';
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #ffffff, #ff4fd8);
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.5);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.8rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #e8dff0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-badge-core {
  border-color: rgba(255, 79, 216, 0.32);
  color: #ffb7f2;
}

.capability-card {
  overflow: hidden;
}

.capability-image-shell {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.capability-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.capability-copy {
  padding: 1.5rem;
}

.showcase-panel,
.contact-band {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.showcase-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ddd3e4;
  line-height: 1.6;
}

.showcase-item i {
  color: #ffb7f2;
  margin-top: 0.12rem;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8.75rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.client-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 79, 216, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.client-logo-img {
  max-width: 100%;
  max-height: 4.75rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-logo-skydio { max-height: 3.4rem; }
.client-logo-vectuel { max-height: 5.5rem; }
.client-logo-construkted { max-height: 3.4rem; }
.client-logo-mirai { max-height: 3.2rem; }
.client-logo-rockgarden { max-height: 3rem; }
.client-logo-voluma { max-height: 4.4rem; }

@media (max-width: 1023px) {
  .hero-logo-strip {
    max-width: 100%;
  }

  .hero-scene {
    min-height: 31rem;
  }

  .hero-scene-content {
    min-height: 31rem;
    padding: 1rem;
  }

  .hero-hud-top {
    max-width: none;
  }

  .hero-hud-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-floating-tags {
    width: min(100%, 18rem);
    margin-right: 0;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-orbit-a,
  .hero-orbit-b,
  .hero-orbit-c {
    transform: scale(0.7);
    transform-origin: center;
  }

  .hero-chip-row,
  .capability-chip-row {
    justify-content: flex-start;
  }

  .hero-logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-scene {
    min-height: 28rem;
  }

  .hero-scene-content {
    min-height: 28rem;
    padding: 0.9rem;
  }

  .hero-hud-top {
    padding: 1rem;
  }

  .hero-hud-title {
    font-size: 1.15rem;
  }

  .hero-hud-text,
  .hero-metric-value {
    font-size: 0.88rem;
  }

  .hero-metric {
    padding: 0.85rem;
  }

  .hero-floating-tags {
    width: 100%;
    align-self: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.6rem;
  }

  .hero-floating-tag,
  .hero-floating-tag-a,
  .hero-floating-tag-b,
  .hero-floating-tag-c {
    align-self: auto;
  }

  .hero-hud-bottom {
    grid-template-columns: 1fr;
  }

  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .client-logo-card {
    min-height: 7.5rem;
    padding: 1.2rem;
  }

  .showcase-panel,
  .contact-band {
    padding: 1.4rem;
  }

  .audience-card,
  .offer-card,
  .support-card,
  .capability-copy {
    padding: 1.25rem;
  }

  .site-logo-nav {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 639px) {
  .hero-logo-strip {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    height: 3.5rem;
  }

  .hero-scene {
    min-height: 25.5rem;
  }

  .hero-scene-content {
    min-height: 25.5rem;
  }

  .hero-hud-bottom {
    grid-template-columns: 1fr;
  }

  .showcase-item {
    padding: 0.9rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-particle,
  .hero-scanline {
    animation: none !important;
  }
}
