/* ─── VelvetChat Global Styles ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #080608;
  --deep: #100d12;
  --card: #16121a;
  --card2: #1c1820;
  --rose: #e8a0b0;
  --rose-bright: #f0bcc8;
  --rose-deep: #c0607a;
  --violet: #c0607a;
  --violet-bright: #e8a0b0;
  --violet-dim: #8a4560;
  --cream: #f8f0e8;
  --text: #d4c8d0;
  --muted: #9e8fa6;
  --green: #7dd4a0;
  --border: rgba(232,160,176,0.12);
  --border-rose: rgba(232,160,176,0.15);
  --border-light: rgba(232,160,176,0.25);
  --glow-violet: rgba(232,160,176,0.1);
  --glow-rose: rgba(232,160,176,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--violet-dim); border-radius: 2px; }

/* Orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}

/* Shared button styles */
.btn-main {
  background: var(--rose);
  color: var(--black); border: none; border-radius: 100px;
  padding: 20px 52px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 6px 40px rgba(232,160,176,0.35);
  letter-spacing: 0.02em;
}
.btn-main:hover:not(:disabled) {
  transform: translateY(-3px);
  background: var(--rose-bright);
  box-shadow: 0 14px 55px rgba(232,160,176,0.5);
}
.btn-main:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-rose); border-radius: 100px;
  padding: 20px 48px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 400;
  cursor: pointer; transition: all .25s;
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s; }
.rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .3s; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(0.8); }
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 52px 60px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--cream);
}
.footer-logo span { color: var(--rose); }
footer p { font-size: 12px; color: var(--muted); }
.footer-socials { display: flex; gap: 16px; align-items: center; }
.footer-socials a { color: var(--muted); text-decoration: none; transition: color .2s; display: flex; align-items: center; }
.footer-socials a:hover { color: var(--rose); }
.footer-links { display: flex; gap: 32px; font-size: 12px; color: var(--muted); }
.footer-links a { color: inherit; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--rose); }

@media (max-width: 900px) {
  footer { padding: 40px 24px; flex-direction: column; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
