/* Zuto Marketplace - shared brand identity (Elinom orange scheme) */

:root {
  --zuto-primary: #ff6b00;
  --zuto-primary-dark: #ea580c;
  --zuto-secondary: #ffb300;
  --zuto-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8c1a 50%, #ffb300 100%);
  --zuto-gradient-text: linear-gradient(90deg, #ff6b00, #ffb300);
  --zuto-glow: rgba(255, 107, 0, 0.35);
  --zuto-text-muted: #94a3b8;
}

.zuto-gradient-text {
  background: var(--zuto-gradient-text);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.zuto-powered-by {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--zuto-text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-top: 2px;
}

.zuto-hero-strip {
  background: linear-gradient(135deg, #0f172a 0%, #1c1917 45%, #292524 100%);
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
  padding: 2.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.zuto-hero-strip::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.14), transparent 70%);
  pointer-events: none;
}

.zuto-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.zuto-hero-copy h1 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 900;
  color: #f8fafc;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

.zuto-hero-copy h1 .zuto-name {
  background: var(--zuto-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.zuto-hero-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: #fdba74;
  margin: 0 0 0.35rem;
}

.zuto-hero-subtitle {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin: 0;
  max-width: 560px;
  line-height: 1.6;
}

.zuto-hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.zuto-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  border: none;
  background: var(--zuto-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 6px 24px var(--zuto-glow);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.zuto-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 107, 0, 0.45);
}

.zuto-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 107, 0, 0.45);
  background: rgba(255, 107, 0, 0.06);
  color: #f1f5f9;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.zuto-btn-outline:hover {
  border-color: var(--zuto-primary);
  background: rgba(255, 107, 0, 0.12);
}

.zuto-page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(160deg, #0a0f1e 0%, #1a1030 50%, #0a0f1e 100%);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.zuto-page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.zuto-loader-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow: 0 8px 32px var(--zuto-glow);
  animation: zutoPulse 1.6s ease-in-out infinite;
}

.zuto-loader-title {
  font-size: 1.35rem;
  font-weight: 900;
  background: var(--zuto-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.zuto-loader-tagline {
  font-size: 0.82rem;
  color: var(--zuto-text-muted);
  font-weight: 600;
}

.zuto-loader-powered {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 0.25rem;
}

@keyframes zutoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.zuto-footer {
  background: linear-gradient(180deg, #0f172a 0%, #0a0f1e 100%);
  border-top: 1px solid rgba(255, 107, 0, 0.12);
  color: #cbd5e1;
  padding: 3rem 1.5rem 1.5rem;
}

.zuto-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.zuto-footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.zuto-footer-brand-name {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--zuto-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.zuto-footer-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fdba74;
  margin: 0 0 0.35rem;
}

.zuto-footer-powered {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0 0 1.25rem;
}

.zuto-footer-copy {
  font-size: 0.78rem;
  color: #64748b;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.zuto-footer-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0 0;
}

.zuto-footer-links a {
  color: #94a3b8;
  font-size: 0.82rem;
  text-decoration: none;
}

.zuto-footer-links a:hover {
  color: var(--zuto-primary);
}

@media (max-width: 768px) {
  .zuto-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .zuto-hero-cta {
    width: 100%;
  }

  .zuto-btn-primary,
  .zuto-btn-outline {
    flex: 1;
    justify-content: center;
  }
}