/* ============================================
   Playtek - Vanilla CSS (converted from Tailwind)
   Theme: dark, accent cyan + violet, glassmorphism
   ============================================ */

/* ---------- Design tokens ---------- */
:root {
  --radius: 0.875rem;

  /* Colors (oklch from original design system) */
  --background: oklch(0.16 0.03 260);
  --foreground: oklch(0.98 0.01 240);
  --card: oklch(0.21 0.035 265);
  --card-foreground: oklch(0.98 0.01 240);
  --primary: oklch(0.82 0.16 195);
  --primary-foreground: oklch(0.16 0.03 260);
  --secondary: oklch(0.62 0.22 295);
  --muted: oklch(0.26 0.035 265);
  --muted-foreground: oklch(0.72 0.03 250);
  --border: oklch(0.32 0.04 265 / 60%);
  --input: oklch(0.26 0.035 265);

  /* Gradients */
  --gradient-hero:
    radial-gradient(ellipse 80% 60% at 50% 0%, oklch(0.62 0.22 295 / 35%), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 40%, oklch(0.82 0.16 195 / 25%), transparent 60%),
    linear-gradient(180deg, oklch(0.16 0.03 260) 0%, oklch(0.13 0.03 260) 100%);
  --gradient-brand: linear-gradient(135deg, oklch(0.82 0.16 195) 0%, oklch(0.62 0.22 295) 100%);
  --gradient-card: linear-gradient(180deg, oklch(0.24 0.04 265 / 80%) 0%, oklch(0.19 0.035 265 / 60%) 100%);

  /* Shadows */
  --shadow-glow: 0 0 60px -10px oklch(0.82 0.16 195 / 45%);
  --shadow-elegant: 0 20px 60px -20px oklch(0 0 0 / 60%);

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

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
}
p { margin: 0; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container.narrow { max-width: 64rem; }
.text-center { text-align: center; }

/* ---------- Reusable utilities ---------- */
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glass {
  background: oklch(0.22 0.04 265 / 50%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid oklch(0.4 0.05 265 / 40%);
}
.bg-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(oklch(0.4 0.05 265 / 12%) 1px, transparent 1px),
    linear-gradient(90deg, oklch(0.4 0.05 265 / 12%) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
}

/* ---------- Animations ---------- */
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.animate-float { animation: float-slow 6s ease-in-out infinite; }

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.animate-pulse-glow { animation: pulse-glow 4s ease-in-out infinite; }

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fade-in 0.8s ease-out both; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.15s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  user-select: none;
}
.btn-sm { height: 2.25rem; padding: 0 0.9rem; font-size: 0.875rem; }
.btn-lg { height: 3rem; padding: 0 1.75rem; font-size: 1rem; }
.btn-brand {
  background: var(--gradient-brand);
  color: var(--primary-foreground);
  border: none;
  outline: none;
}
.btn-brand:hover { opacity: 0.92; }
.btn:focus,
.btn:focus-visible,
.btn-brand:focus,
.btn-brand:focus-visible { outline: none; box-shadow: none; }
.btn-outline {
  border-color: oklch(0.82 0.16 195 / 40%);
  color: oklch(0.82 0.16 195);
  background: transparent;
}
.btn-outline:hover {
  background: oklch(0.82 0.16 195 / 10%);
  color: oklch(0.82 0.16 195);
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
}
.nav-inner { padding-top: 1rem; padding-bottom: 1rem; }
.nav-bar {
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
}
.nav-logo {
  height: 6.5rem;
  width: auto;
  margin: -1.75rem 0;
}
@media (min-width: 768px) {
  .nav-logo { height: 8rem; margin: -2.25rem 0; }
}
.nav-links { display: none; gap: 1.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--foreground); }
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: var(--gradient-hero);
}
@media (min-width: 768px) {
  .hero { padding-top: 10rem; padding-bottom: 7rem; }
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid oklch(0.82 0.16 195 / 30%);
  background: oklch(0.82 0.16 195 / 10%);
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: oklch(0.82 0.16 195);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-title {
  margin-top: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  line-height: 1.6;
}
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

/* Hero image */
.hero-image-wrap { position: relative; }
.hero-image-glow {
  position: absolute;
  inset: -2rem;
  background: var(--gradient-brand);
  opacity: 0.2;
  filter: blur(60px);
  border-radius: 9999px;
}
.hero-image {
  position: relative;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--border);
}
.floating-note {
  position: absolute;
  background: oklch(0.22 0.04 265 / 50%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid oklch(0.4 0.05 265 / 40%);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-elegant);
  animation: float-slow 6s ease-in-out infinite;
  pointer-events: none;
}
.floating-note p { font-size: 0.875rem; font-weight: 600; line-height: 1.2; }
.note-top-right { top: 1rem; right: 1rem; }
.note-bottom-left { bottom: 1rem; left: 1rem; }
@media (min-width: 640px) {
  .note-top-right { top: 1.5rem; right: 1.5rem; }
  .note-bottom-left { bottom: 1.5rem; left: 1.5rem; }
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: 6rem 0;
}
.section-tinted { overflow: hidden; }
.section .container, .section-tinted .container { position: relative; z-index: 1; }

.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: oklch(0.82 0.16 195);
  font-weight: 600;
}
.section-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-lead {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.section-lead.small { font-size: 1rem; }
.section-lead strong { color: var(--foreground); font-weight: 600; }
.section-header { max-width: 48rem; }
.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 64rem;
}
@media (min-width: 768px) {
  .section-header-row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .section-header-row .section-lead.small { max-width: 28rem; }
}

/* ---------- Cards grid ---------- */
.cards-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: oklch(0.82 0.16 195 / 40%);
  box-shadow: var(--shadow-glow);
}
.card-icon {
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: oklch(0.82 0.16 195 / 15%);
  color: oklch(0.82 0.16 195);
  border: 1px solid oklch(0.82 0.16 195 / 30%);
}
.card h3 { margin-top: 1.25rem; font-size: 1.25rem; font-weight: 600; }
.card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ---------- Experiences grid ---------- */
.experiences-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .experiences-grid { grid-template-columns: repeat(4, 1fr); } }
.experience {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
@media (min-width: 640px) { .experience { aspect-ratio: 4 / 3; } }
.experience:hover {
  transform: translateY(-4px);
  border-color: oklch(0.82 0.16 195 / 50%);
  box-shadow: var(--shadow-glow);
}
.experience-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, oklch(0.82 0.16 195 / 30%), oklch(0.62 0.22 295 / 20%), oklch(0.16 0.03 260));
}
.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0 0 0 / 95%), oklch(0 0 0 / 55%) 50%, oklch(0 0 0 / 10%));
}
.experience-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.25rem;
}
.experience-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  color: white;
}
.experience-meta {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: oklch(1 0 0 / 70%);
  transition: color 0.15s ease;
}
.experience:hover .experience-meta { color: oklch(0.82 0.16 195); }

/* ---------- Platform CTA (debajo de experiencias) ---------- */
.platform-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* ---------- Galería / Carrusel ---------- */
.carousel {
  margin-top: 3rem;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: oklch(0.13 0.03 260);
  box-shadow: var(--shadow-elegant);
}
@media (min-width: 768px) {
  .carousel-slide { flex: 0 0 calc((100% - 2rem) / 3); }
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 9999px;
  background: oklch(0.22 0.04 265 / 70%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid oklch(0.4 0.05 265 / 50%);
  color: var(--foreground);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.carousel-arrow:hover {
  background: oklch(0.82 0.16 195 / 20%);
  border-color: oklch(0.82 0.16 195 / 60%);
  color: oklch(0.82 0.16 195);
}
.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: oklch(0.4 0.05 265 / 50%);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot.active {
  background: var(--gradient-brand);
  transform: scale(1.3);
}

/* ---------- Marcas / Confían en nosotros ---------- */
.brands-marquee {
  margin-top: 3rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.brands-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: brands-scroll 45s linear infinite;
}
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand {
  flex: 0 0 auto;
  height: 7rem;
  width: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.25s ease;
}
.brand:hover { transform: scale(1.12); }
.brand img {
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: contain;
  opacity: 0.95;
  display: block;
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.brand:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 12px oklch(0.82 0.16 195 / 50%));
}


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

/* ---------- Tags ---------- */
.tags {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.tag {
  border-radius: 9999px;
  background: oklch(0.22 0.04 265 / 50%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid oklch(0.4 0.05 265 / 40%);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: oklch(0.98 0.01 240 / 90%);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.tag:hover {
  border-color: oklch(0.82 0.16 195 / 50%);
  color: oklch(0.82 0.16 195);
}

/* ---------- CTA box ---------- */
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--gradient-card);
  padding: 2.5rem;
}
@media (min-width: 768px) { .cta-box { padding: 4rem; } }
.cta-blob {
  position: absolute;
  height: 18rem;
  width: 18rem;
  border-radius: 9999px;
  filter: blur(80px);
  animation: pulse-glow 4s ease-in-out infinite;
}
.cta-blob-1 { top: -6rem; right: -6rem; background: oklch(0.62 0.22 295 / 30%); }
.cta-blob-2 { bottom: -6rem; left: -6rem; background: oklch(0.82 0.16 195 / 20%); }
.cta-inner { position: relative; }
.cta-inner .section-title { max-width: 48rem; }
.cta-tagline {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-display);
  max-width: 36rem;
}
@media (min-width: 768px) { .cta-tagline { font-size: 1.875rem; } }
.cta-inner .btn { margin-top: 2rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 3fr; }
}
.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: oklch(0.98 0.01 240 / 90%);
  transition: color 0.15s ease;
}
.contact-info-item:hover { color: oklch(0.82 0.16 195); }
.contact-info-icon {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: oklch(0.82 0.16 195 / 15%);
  color: oklch(0.82 0.16 195);
  border: 1px solid oklch(0.82 0.16 195 / 30%);
}

.form-card {
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
}
@media (min-width: 768px) { .form-card { padding: 2rem; } }

.contact-form {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .contact-form { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}
.form-field input,
.form-field textarea {
  background: oklch(0.26 0.035 265 / 60%);
  border: 1px solid var(--border);
  color: var(--foreground);
  border-radius: 0.5rem;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.875rem;
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input { height: 2.75rem; }
.form-field textarea { resize: none; min-height: 6.5rem; }
.form-field input:focus,
.form-field textarea:focus {
  border-color: oklch(0.82 0.16 195 / 60%);
  box-shadow: 0 0 0 3px oklch(0.82 0.16 195 / 15%);
}
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
@media (min-width: 640px) { .form-actions { flex-direction: row; } }
.form-actions .btn { flex: 1; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
}
.footer-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-logo { height: 4.5rem; width: auto; }
.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  max-width: 22rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
@media (min-width: 768px) { .footer-links { text-align: center; } }
.footer-links a { transition: color 0.15s ease; }
.footer-links a:hover { color: oklch(0.82 0.16 195); }
.footer-social { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .footer-social { align-items: flex-end; } }
.social-buttons { display: flex; gap: 0.75rem; }
.social-btn {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: oklch(0.22 0.04 265 / 50%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid oklch(0.4 0.05 265 / 40%);
  color: inherit;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.social-btn:hover {
  border-color: oklch(0.82 0.16 195 / 50%);
  color: oklch(0.82 0.16 195);
}
.footer-copy { font-size: 0.75rem; color: var(--muted-foreground); }

/* ---------- Dropdown ---------- */
.dropdown { position: relative; display: inline-block; }
.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 8rem;
  background: oklch(0.21 0.035 265);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.25rem;
  box-shadow: var(--shadow-elegant);
  display: none;
  z-index: 60;
}
.dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  color: var(--foreground);
  transition: background 0.15s ease;
}
.dropdown-menu a:hover { background: oklch(0.32 0.04 265); }
.dropdown.open .dropdown-menu { display: block; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
.toast-item {
  pointer-events: auto;
  background: oklch(0.21 0.035 265);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-elegant);
  min-width: 16rem;
  max-width: 22rem;
  animation: fade-in 0.2s ease-out;
}
.toast-item.success { border-color: oklch(0.7 0.18 160 / 60%); }
.toast-item.error { border-color: oklch(0.65 0.23 25 / 60%); }
