:root {
  --blue: #2322da;
  --red: #da1a19;
  --bg-base: #0a0a0f;
  --text: #f2f2f5;
  --muted: #a8a8b3;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg-base);
  overflow-x: hidden;
}

/* Animated blurred background */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg-base);
}

.blob {
  position: absolute;
  width: 55vmax;
  height: 55vmax;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  will-change: transform;
}

.blob-a {
  top: -15%;
  left: -10%;
  background: var(--blue);
  animation: drift-a 12s ease-in-out infinite;
}

.blob-b {
  bottom: -20%;
  right: -10%;
  background: var(--red);
  animation: drift-b 15s ease-in-out infinite;
}

.blob-c {
  top: 30%;
  left: 40%;
  width: 40vmax;
  height: 40vmax;
  background: linear-gradient(135deg, var(--blue), var(--red));
  animation: drift-c 9s ease-in-out infinite;
}

@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15vw, 10vh) scale(1.15); }
}

@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12vw, -12vh) scale(1.1); }
}

@keyframes drift-c {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-40%, -60%) rotate(20deg); }
}

@media (prefers-reduced-motion: reduce) {
  .blob {
    animation: none;
  }
}

/* Header / logo */
.site-header {
  display: flex;
  justify-content: center;
  padding: 3rem 1.5rem 1.5rem;
}

.logo-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.25rem;
  padding: 1.25rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.logo {
  display: block;
  height: 72px;
  width: auto;
}

/* Main content area */
main {
  flex: 1;
  width: 100%;
}

#products {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact {
  margin: 0 0 0.5rem;
}

.contact a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact a:hover {
  color: var(--red);
}

.rights {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.8;
}
