/*
Theme Name: Mindova
Theme URI: https://mindova.pl
Author: Mindova
Description: Motyw WordPress wygenerowany z oryginalnej strony Mindova (1:1, bez zmian wizualnych). Cała treść znajduje się w plikach header.php, index.php i footer.php — możesz je edytować w Wygląd > Edytor motywu.
Version: 1.0
Requires PHP: 7.4
Text Domain: mindova
*/

/* ====== Design tokens / zmienne (1:1 z oryginalnego styles.css) ====== */
:root {
  --radius: 0.875rem;

  --background: oklch(0.12 0.005 285);
  --foreground: oklch(0.98 0.005 285);
  --card: oklch(0.16 0.01 285);
  --card-foreground: oklch(0.98 0.005 285);
  --popover: oklch(0.16 0.01 285);
  --popover-foreground: oklch(0.98 0.005 285);

  --primary: oklch(0.65 0.24 295);
  --primary-foreground: oklch(0.99 0 0);
  --secondary: oklch(0.22 0.02 285);
  --secondary-foreground: oklch(0.98 0.005 285);
  --muted: oklch(0.2 0.015 285);
  --muted-foreground: oklch(0.72 0.02 285);
  --accent: oklch(0.65 0.24 295);
  --accent-foreground: oklch(0.99 0 0);
  --destructive: oklch(0.6 0.24 25);

  --border: oklch(0.3 0.03 290 / 0.4);
  --input: oklch(0.3 0.03 290 / 0.3);
  --ring: oklch(0.65 0.24 295);

  --neon: oklch(0.65 0.24 295);
  --neon-soft: oklch(0.72 0.2 300);
  --neon-deep: oklch(0.5 0.28 290);

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* {
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0B0B0B;
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.font-display { font-family: var(--font-display); }
.font-sans { font-family: var(--font-sans); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0B0B0B; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7C3AED, #8B5CF6);
  border-radius: 999px;
}

::selection {
  background: color-mix(in oklab, var(--neon) 40%, transparent);
  color: white;
}

/* ====== Custom utilities (1:1 z oryginalnego styles.css) ====== */
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(139,92,246,0.03));
  backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(139, 92, 246, 0.18);
}

.glass-strong {
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(11,11,11,0.6));
  backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.neon-glow {
  box-shadow:
    0 0 24px rgba(139, 92, 246, 0.35),
    0 0 60px rgba(124, 58, 237, 0.25),
    inset 0 0 20px rgba(139, 92, 246, 0.08);
}

.neon-text {
  text-shadow:
    0 0 20px rgba(168, 85, 247, 0.55),
    0 0 48px rgba(139, 92, 246, 0.35);
}

.gradient-violet {
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 50%, #A855F7 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #E9D5FF 40%, #A855F7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Keyframes */
@keyframes float-orb {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}
@keyframes float-orb-2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-50px, 40px) scale(1.15); }
}
@keyframes slide-down-fade {
  from { opacity: 0; transform: translateY(-40px) scale(0.98); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes rise-fade {
  from { opacity: 0; transform: translateY(40px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(139,92,246,0.4), 0 0 40px rgba(139,92,246,0.2); }
  50% { box-shadow: 0 0 40px rgba(168,85,247,0.7), 0 0 80px rgba(139,92,246,0.4); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.animate-slide-down {
  animation: slide-down-fade 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.animate-rise {
  animation: rise-fade 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.animate-float-orb {
  animation: float-orb 14s ease-in-out infinite;
}
.animate-float-orb-2 {
  animation: float-orb-2 18s ease-in-out infinite;
}
.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}
.animate-spin-slow {
  animation: spin-slow 8s linear infinite;
}

/* ====== Reveal on scroll (odpowiednik komponentu <Reveal>) ====== */
.reveal {
  transition: opacity 1s ease-out, transform 1s ease-out, filter 1s ease-out;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
}
.reveal.is-shown {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ====== Testimonial slides ====== */
.testimonial-slide {
  transition: opacity 0.7s ease, transform 0.7s ease;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
