/* ═══════════════════════════════════════
   VET Studio Homepage Styles
   ═══════════════════════════════════════ */

/* Desktop container */
.desktop {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 30px 30px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Parallax wrapper */
.parallax-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s var(--ease-smooth);
  will-change: transform;
}

/* Logo area */
.logo-area {
  margin-bottom: 20px;
  text-align: center;
}
.logo-wrap { display: inline-block }
.logo {
  width: 72px; height: 72px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--logo-bg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(50,240,140,0.2), 0 2px 10px rgba(0,0,0,0.3);
  will-change: transform;
  transition: transform 0.25s var(--ease-smooth);
}
.logo svg { width: 56px; height: 56px }
.logo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(100,180,255,0.08), rgba(180,100,255,0.05), rgba(100,255,200,0.07));
  background-size: 200% 200%;
  animation: holoShimmer 5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Title typography */
.desktop-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3), 0 0 30px rgba(100,180,255,0.15);
}
.desktop-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  max-width: 440px;
  line-height: 1.7;
  margin-top: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Window grid */
.wgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  width: 100%;
  margin-top: 32px;
}
