/* ===== Skooly — Friendly Light Theme ===== */
:root {
  --bg: #fffdf9;
  --bg-soft: #fbf7ff;
  --ink: #211c35;
  --muted: #6f6a85;
  --line: #efeaf6;
  --brand: #7c5cff;
  --brand-2: #18c5a8;
  --coral: #ff7a59;
  --amber: #ffb020;
  --pink: #ff6fb5;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); }

.font-display { font-family: 'Kanit', 'Inter', sans-serif; }

/* Soft pastel aurora blobs */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aurora span {
  position: absolute; border-radius: 9999px; filter: blur(70px); opacity: .35;
  animation: float 18s ease-in-out infinite;
}
.aurora .a1 { width: 420px; height: 420px; background: #c9bcff; top: -120px; left: -80px; }
.aurora .a2 { width: 360px; height: 360px; background: #9af0dd; top: 30px; right: -90px; animation-delay: -5s; }
.aurora .a3 { width: 340px; height: 340px; background: #ffc4b0; bottom: -130px; left: 32%; animation-delay: -9s; }

@keyframes float {
  0%,100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-26px) translateX(18px) scale(1.07); }
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(100deg, #7c5cff 0%, #ff6fb5 55%, #ff7a59 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Card (kept class name "glass" so markup stays compatible) */
.glass {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 30px -16px rgba(90, 70, 160, .22);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.glass:hover { border-color: #d9cffb; box-shadow: 0 18px 40px -18px rgba(124, 92, 255, .35); }

/* Friendly glowing buttons */
.btn-glow { box-shadow: 0 10px 24px -8px rgba(124, 92, 255, .55); }
.btn-glow:hover { box-shadow: 0 16px 34px -8px rgba(124, 92, 255, .7); transform: translateY(-1px); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: all .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* Marquee */
.marquee { display: flex; gap: 3rem; width: max-content; animation: scrollx 28s linear infinite; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* Avatar initials */
.avatar { display: grid; place-items: center; font-weight: 700; color: #fff; }

/* Accordion */
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc.open .acc-body { max-height: 340px; }
.acc.open .acc-icon { transform: rotate(45deg); }

/* Pills row */
.no-bar::-webkit-scrollbar { display: none; }
.no-bar { -ms-overflow-style: none; scrollbar-width: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-thumb { background: #e4ddf3; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #d3c8ee; }

/* Progress bar fill */
.bar-fill { transition: width 1s cubic-bezier(.2,.7,.2,1); }

/* Soft pastel chip backgrounds for feature icons */
.chip-purple { background: #efeafe; }
.chip-teal   { background: #ddf7f1; }
.chip-coral  { background: #ffe9e1; }
.chip-amber  { background: #fff1d9; }
.chip-pink   { background: #ffe6f1; }
.chip-blue   { background: #e6f1fb; }
