/*
.confetti{
  position: fixed;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--amber), var(--fun));
  box-shadow: 0 10px 18px rgba(15,23,42,.15);
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: confFly 1.05s ease-out forwards;
}
@keyframes confFly{
  from{ opacity: 1; transform: translate(-50%, -50%) translate(0,0) rotate(0); }
  to{ opacity: 0; transform: translate(-50%, -50%) translate(var(--dx), var(--dy)) rotate(var(--rot)); }
}

 ══════════════════════════════════════════════
   NIPOON KALAM – IT & AI SERVICES
   Design System v2 — Dark Tech Aesthetic
   Syne + DM Sans | Navy × Amber
══════════════════════════════════════════════ */

:root {
  --kb-h: 46px;
  /* Light Bento palette (based on your provided design) */
  --bg:          #F8FAFC;
  --surface:     rgba(255,255,255,.78);
  --surface-2:   rgba(255,255,255,.92);
  --ink:         #0F172A;
  --muted:       #475569;
  --dim:         #64748B;

  /* Fun accents */
  --amber:       #818CF8;         /* indigo */
  --amber-light: #A5B4FC;
  --amber-dim:   rgba(129,140,248,.18);

  --blue:        #22D3EE;         /* cyan */
  --blue-dim:    rgba(34,211,238,.16);

  --teal:        #34D399;         /* emerald */
  --fun:         #F472B6;         /* pink */

  --white:       #ffffff;

  /* System */
  --text:        var(--ink);
  --text-muted:  var(--muted);
  --text-dim:    var(--dim);

  --border:      rgba(15,23,42,.08);
  --border-med:  rgba(15,23,42,.12);
  --border-hi:   rgba(15,23,42,.18);

  --glass:       rgba(255,255,255,.66);
  --glass-hi:    rgba(255,255,255,.84);

  --shadow-sm:   0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow:      0 22px 60px rgba(15, 23, 42, 0.10);
  --shadow-lg:   0 35px 75px rgba(79, 70, 229, 0.18);

  --radius: 32px;
  --radius-sm: 22px;
  --radius-lg: 40px;

  --container:   1160px;

  --accent-gradient: linear-gradient(135deg, var(--amber) 0%, var(--teal) 100%);
  --accent-gradient-2: linear-gradient(135deg, var(--amber) 0%, var(--fun) 55%, var(--blue) 120%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;

  padding-top: var(--kb-h);
}

/* Background mesh */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 820px 560px at 12% -10%, rgba(129,140,248,.22) 0%, transparent 68%),
    radial-gradient(ellipse 680px 540px at 92% 18%,  rgba(34,211,238,.16) 0%, transparent 70%),
    radial-gradient(ellipse 900px 420px at 55% 105%, rgba(244,114,182,.14) 0%, transparent 70%),
    radial-gradient(ellipse 760px 520px at 35% 55%, rgba(52,211,153,.12) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

/* SVG circuit background pattern */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='0.5'%3E%3Cpath d='M30 0v15M30 45v15M0 30h15M45 30h15'/%3E%3Ccircle cx='30' cy='30' r='3' stroke='rgba(245,158,11,0.08)'/%3E%3Cpath d='M15 15l4 4M41 15l-4 4M15 45l4-4M41 45l-4-4'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; left: -9999px; top: 12px;
  background: var(--accent-gradient); color: #ffffff;
  padding: 8px 16px; border-radius: 999px; font-weight: 700;
  z-index: 10000;
}
.skip-link:focus { left: 16px; }

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.site-header {
  position: sticky; top: var(--kb-h); z-index: 1000;
  padding: 0;
  background: rgba(248,250,252,.80);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(15,23,42,.04), 0 10px 30px rgba(15,23,42,.06);
}

.nav-container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo / brand */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--accent-gradient-2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(79,70,229,.18);
}
.logo-mark.logo-img-wrap{background: transparent; box-shadow: none; border-radius: 10px;}
.logo-mark.logo-img-wrap img{width: 32px; height: 32px; display:block;}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: .95rem; color: var(--ink); }
.logo-tagline { font-family: 'Inter', sans-serif; font-size: .65rem; font-weight: 400; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; }

/* Nav links */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 999px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); background: var(--glass-hi); }
.nav-link.active {
  color: var(--ink);
  background: var(--glass-hi);
  border: 1px solid var(--border-med);
}

.nav-cta-group { display: flex; align-items: center; gap: 8px; }

.pill-outline {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 7px 14px;
  border: 1px solid var(--border-med);
  border-radius: 999px;
  white-space: nowrap;
  transition: color .15s, border-color .15s, background .15s;
}
.pill-outline:hover { color: var(--ink); border-color: var(--border-hi); background: var(--glass); }

.pill-cta {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: #ffffff;
  padding: 8px 16px;
  background: var(--accent-gradient-2);
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(79,70,229,.18);
  transition: box-shadow .15s, transform .1s;
}
.pill-cta:hover { box-shadow: 0 22px 48px rgba(79,70,229,.22); transform: translateY(-1px); color: #ffffff; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: var(--glass-hi);
  border: 1px solid var(--border-med);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ══════════════════════════════════════════════
   PAGE LAYOUT
══════════════════════════════════════════════ */
main { padding: 0 0 80px; }

.section { margin-top: 56px; }
.section-sm { margin-top: 32px; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  padding: 44px 0 34px;
  position: relative;
}

.hero-wrap{
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-med);
  background: rgba(255,255,255,.88);
  box-shadow: 0 28px 90px rgba(15,23,42,.14);
  overflow:hidden;
  position: relative;
}
.hero-wrap::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 520px 260px at 10% 10%, rgba(129,140,248,.16) 0%, transparent 68%),
    radial-gradient(ellipse 520px 260px at 90% 30%, rgba(34,211,238,.14) 0%, transparent 70%),
    radial-gradient(ellipse 640px 320px at 50% 120%, rgba(244,114,182,.12) 0%, transparent 72%);
  pointer-events:none;
}
.hero-wrap > *{ position: relative; z-index: 1; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
}
.hero-side{
  border-radius: 28px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.90);
  box-shadow: 0 22px 70px rgba(15,23,42,.12);
  padding: 18px;
}
.hero-side .game-subtitle{ margin-top: 2px; }
.hero-side .quest-list li{ padding: 10px 10px; }
.hero-photo{
  width:100%;
  height:auto;
  display:block;
  filter: brightness(1.06) contrast(1.02) saturate(1.08);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--amber-dim);
  border: 1px solid var(--border-med);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.h1 {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--amber) 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h2 {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 32px;
  font-weight: 300;
}

/* ── ACTION BUTTONS ── */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: transform .1s ease, box-shadow .15s ease, background .15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent-gradient-2);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(79,70,229,.16);
}
.btn-primary:hover {
  box-shadow: 0 28px 70px rgba(79,70,229,.22);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-med);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background: var(--glass-hi); border-color: var(--border-hi); }

.btn-ghost {
  background: var(--glass);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--glass-hi); color: var(--ink); }

/* ── BADGES ── */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--glass);
  border: 1px solid var(--border-med);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
}
.badge::before { content: '✓'; color: var(--teal); font-size: .75rem; }


/* ══════════════════════════════════════════════
   BENTO BASE (more bubbly)
══════════════════════════════════════════════ */
.bento-card{
  transition: transform .32s cubic-bezier(.22,1,.36,1), box-shadow .32s cubic-bezier(.22,1,.36,1), border-color .32s ease;
  will-change: transform;
  transform: translateZ(0);
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 70px rgba(15,23,42,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.bento-card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 38px 110px rgba(79,70,229,.18), 0 22px 70px rgba(15,23,42,.14);
  border-color: rgba(79,70,229,.22);
}
.bento-soft{
  background:
    radial-gradient(ellipse 420px 220px at 10% 10%, rgba(129,140,248,.18) 0%, transparent 70%),
    radial-gradient(ellipse 420px 220px at 90% 30%, rgba(34,211,238,.14) 0%, transparent 72%),
    radial-gradient(ellipse 520px 260px at 50% 120%, rgba(244,114,182,.12) 0%, transparent 70%),
    rgba(255,255,255,.88);
}
/* ══════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════ */
.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: var(--border-med); }

.card-elevated {
  background: var(--glass-hi);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

/* ── SERVICE CARDS (3-grid) ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-dim), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.service-card:hover {
  border-color: rgba(79,70,229,.22);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 34px 90px rgba(79,70,229,.16), 0 22px 60px rgba(15,23,42,.10);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon{ transform: translateY(-2px) rotate(-2deg) scale(1.06); }
.service-card:active{ transform: translateY(-3px) scale(1.01); }

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: transform .28s cubic-bezier(.22,1,.36,1);
}

.icon-blue  { background: var(--blue-dim); border: 1px solid rgba(59,130,246,.2); }
.icon-amber { background: var(--amber-dim); border: 1px solid rgba(245,158,11,.2); }
.icon-teal  { background: rgba(20,184,166,.1); border: 1px solid rgba(20,184,166,.2); }
.icon-purple{ background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.2); }

.service-card h3 {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════
   PRICE CARDS — COMPLETELY REDESIGNED
══════════════════════════════════════════════ */
.price-section-title {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--amber);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-med), transparent);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--glass-hi);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
}
.price-card:hover { border-color: var(--border-med); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.price-card.featured {
  border-color: rgba(245,158,11,.4);
  box-shadow: 0 0 0 1px rgba(245,158,11,.12), var(--shadow);
}
.price-card.featured:hover { border-color: var(--amber); box-shadow: 0 0 40px rgba(245,158,11,.15), var(--shadow-lg); }

.price-card-header {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--navy-4);
  position: relative;
}
.price-card.featured .price-card-header { background: rgba(245,158,11,.06); }

.price-tag {
  position: absolute;
  top: 14px; right: 14px;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--amber), #f97316);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.price-card-name {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-num {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-card.featured .price-num { color: var(--amber); }
.price-suffix {
  font-size: .82rem;
  color: var(--text-dim);
  font-weight: 400;
}

.price-card-body {
  padding: 18px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price-features {
  list-style: none;
  margin: 0 0 20px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: .875rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '→';
  color: var(--amber);
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ══════════════════════════════════════════════
   HERO PHOTO
══════════════════════════════════════════════ */
.hero-photo-wrap {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-med);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(248,250,252,.98) 100%);
}
.hero-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ── PHOTO GALLERY ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.photo-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.photo-item:hover img { transform: scale(1.06); }
.photo-item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.5);
  color: rgba(255,255,255,.8);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity .2s;
}
.photo-item:hover::after { opacity: 1; }
@media (max-width: 700px) { .photo-grid { grid-template-columns: repeat(2,1fr); } }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 12px; }
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  font-size: 1.6rem; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1); border: none;
  border-radius: 999px; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10000;
  transition: background .15s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ══════════════════════════════════════════════
   SVG DECORATIVE ELEMENTS
══════════════════════════════════════════════ */
.svg-divider {
  width: min(var(--container), calc(100% - 48px));
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-med), transparent);
  margin: 48px auto;
  position: relative;
}

.svg-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--teal));
  box-shadow: 0 10px 28px rgba(15,23,42,.14);
}


/* Tech graphic panel */
.tech-panel {
  background: var(--glass-hi);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.tech-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   INFO BOX / NOTE / WARNING
══════════════════════════════════════════════ */
.info-box {
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,.2);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .9rem;
  color: var(--text-muted);
}
.warning-box {
  background: rgba(245,158,11,.07);
  border: 1px solid rgba(245,158,11,.2);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .9rem;
  color: var(--text-muted);
}
.warning-box strong, .info-box strong { color: var(--ink); }

.hr { height: 1px; background: var(--border); margin: 20px 0; }
.note-text { font-size: .85rem; color: var(--text-dim); }

/* ══════════════════════════════════════════════
   SPLIT LAYOUT
══════════════════════════════════════════════ */
.split {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════
   AI COURSE PAGE SPECIFIC
══════════════════════════════════════════════ */
.session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 860px) { .session-grid { grid-template-columns: 1fr; } }

.session-card {
  background: var(--glass-hi);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.session-card.morning { border-top: 3px solid #f59e0b; }
.session-card.afternoon { border-top: 3px solid var(--blue); }

.session-card h3 {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.session-time {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .8rem; font-weight: 600;
  margin-bottom: 12px;
}
.session-card.morning .session-time { background: rgba(245,158,11,.12); color: var(--amber); border: 1px solid rgba(245,158,11,.2); }
.session-card.afternoon .session-time { background: rgba(59,130,246,.1); color: #93c5fd; border: 1px solid rgba(59,130,246,.2); }

.spots-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  background: rgba(20,184,166,.1);
  border: 1px solid rgba(20,184,166,.2);
  border-radius: 999px;
  font-size: .78rem; font-weight: 600; color: var(--teal);
  margin-bottom: 14px;
}

.session-features {
  list-style: none; margin: 0 0 18px;
}
.session-features li {
  padding: 5px 0;
  font-size: .875rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: flex-start; gap: 8px;
}
.session-features li:last-child { border-bottom: none; }
.session-features li::before { content: '–'; color: var(--amber); flex-shrink: 0; }

/* Module cards (workflows) */
.module-card {
  background: var(--glass-hi);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 14px;
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.module-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-dim), transparent);
}
.module-card:hover { border-color: var(--border-med); transform: translateY(-2px); }

.module-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 12px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 999px;
  font-size: .75rem; font-weight: 700;
  color: var(--amber);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.module-card h3 {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.module-card p { font-size: .9rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.65; }
.module-features { list-style: none; margin: 0 0 16px; }
.module-features li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 4px 0; font-size: .875rem; color: var(--text-muted);
}
.module-features li::before { content: '→'; color: var(--teal); flex-shrink: 0; }

.price-range {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--amber);
  letter-spacing: -0.03em;
  margin: 8px 0 16px;
}
.price-range small { font-family: 'Inter', sans-serif; font-weight: 400; font-size: .75rem; color: var(--text-dim); letter-spacing: 0; }

/* ══════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════ */
.form-section {
  background: var(--glass-hi);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-section h2 {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.form-section .sub { font-size: .9rem; color: var(--text-muted); margin-bottom: 28px; }

.field { display: grid; gap: 6px; margin-bottom: 16px; }

label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

input, textarea, select {
  width: 100%;
  padding: 11px 14px;
  background: var(--navy-4);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, textarea:focus, select:focus {
  border-color: rgba(245,158,11,.5);
  box-shadow: 0 0 0 3px rgba(245,158,11,.08);
}
select option { background: var(--glass-hi); }
textarea { resize: vertical; min-height: 100px; }
.field-helper { font-size: .78rem; color: var(--text-dim); }

/* Checkbox */
.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 0;
}
.check-field input[type=checkbox] {
  width: 16px; height: 16px;
  min-width: 16px; margin-top: 2px;
  accent-color: var(--amber);
}
.check-field a { color: var(--amber); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-mark {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--amber), #f97316);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: #ffffff;
}
.footer-logo-name {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
}
.footer-desc {
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer-contacts { display: flex; flex-direction: column; gap: 6px; }
.footer-contacts a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color .15s;
}
.footer-contacts a:hover { color: var(--amber); }

.footer-col h4 {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .88rem; color: var(--text-muted); transition: color .15s; }
.footer-links a:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom span { font-size: .8rem; color: var(--text-dim); }
.footer-note { font-size: .75rem; color: var(--text-dim); max-width: 400px; text-align: right; }

/* ══════════════════════════════════════════════
   ABSTRACT AI SVG PANELS
══════════════════════════════════════════════ */
.ai-visual {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(129,140,248,.10), rgba(34,211,238,.10), rgba(244,114,182,.08)), var(--glass-hi);
}


/* ══════════════════════════════════════════════
   RESPONSIVE NAV
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(248,250,252,.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-med);
    padding: 16px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav-link { padding: 11px 14px; }
  .nav-cta-group { flex-direction: column; gap: 8px; margin-top: 8px; }
  .pill-outline, .pill-cta { text-align: center; display: block; }
}

/* Fade in on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .kicker  { animation: fadeUp .5s ease both; }
.hero .h1      { animation: fadeUp .5s .1s ease both; }
.hero .lead    { animation: fadeUp .5s .2s ease both; }
.hero .actions { animation: fadeUp .5s .3s ease both; }
.hero .badges  { animation: fadeUp .5s .4s ease both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}


/* ══════════════════════════════════════════════
   LIGHT + FUN LAYER (design-match to your reference)
══════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

/* Better typography */
.h1, .h2, .logo, .footer-logo-name, .price-card-name {
  font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
}
body, .lead, .nav-link, .btn, .field, .field textarea, .field input {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

/* Header + nav */
.site-header {
  border-bottom: 1px solid rgba(15,23,42,.10);
}
.nav-link { color: var(--muted); }
.nav-link:hover { color: var(--ink); background: rgba(255,255,255,.65); border-color: rgba(15,23,42,.10); }
.pill-outline { color: var(--ink); background: rgba(255,255,255,.55); }
.pill-outline:hover { background: rgba(255,255,255,.85); }
.pill-cta, .btn-primary {
  color: #fff !important;
  background: var(--accent-gradient);
}
.pill-cta:hover, .btn-primary:hover { transform: translateY(-2px); }
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after{
  content:'';
  position:absolute; inset:-2px;
  background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,0));
  transform: translateX(-120%) skewX(-16deg);
  transition: transform .55s ease;
  opacity:.75;
}
.btn-primary:hover::after{ transform: translateX(120%) skewX(-16deg); }

/* Surfaces + cards */
.hero, .card, .service-card, .price-card, .module-card, .session-card, .info-box, .warning-box, .form-section, .note-text {
  background: var(--surface-2) !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  box-shadow: var(--shadow) !important;
}
.card:hover, .service-card:hover, .price-card:hover, .module-card:hover, .session-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg) !important;
}
.card, .service-card, .price-card, .module-card, .session-card { transition: transform .28s ease, box-shadow .28s ease; }

/* Footer */
.site-footer {
  background: rgba(255,255,255,.55);
  border-top: 1px solid rgba(15,23,42,.08);
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); }

/* Background blobs (fun) */
.bg-blobs { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(70px);
  opacity: .34;
  animation: drift 22s ease-in-out infinite;
}
.blob-1 { width: 18rem; height: 18rem; top: 4rem; left: -3rem; background: rgba(129,140,248,.9); }
.blob-2 { width: 24rem; height: 24rem; top: 30%; right: 1rem; background: rgba(52,211,153,.9); animation-duration: 26s; }
.blob-3 { width: 18rem; height: 18rem; bottom: 6rem; right: -3rem; background: rgba(244,114,182,.9); animation-duration: 24s; }
.blob-4 { width: 22rem; height: 22rem; bottom: -4rem; left: 34%; background: rgba(34,211,238,.9); animation-duration: 28s; }


/* ══════════════════════════════════════════════
   KNOWLEDGE BAR (fun progress header)
══════════════════════════════════════════════ */
.knowledge-bar{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--kb-h);
  z-index: 1200;
  background: rgba(248,250,252,.82);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.knowledge-inner{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  font-size: .86rem;
  color: var(--text-muted);
}
.knowledge-inner strong{
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
}
.knowledge-track{
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(15,23,42,.08);
  overflow:hidden;
  position: relative;
}
#knowledge-progress{
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  transition: width .18s ease;
}
@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  35% { transform: translate3d(18px,-14px,0) scale(1.04); }
  70% { transform: translate3d(-14px,12px,0) scale(0.98); }
}

/* Reveal animation */
.section-reveal{opacity:1; transform:none;}
.js .section-reveal { opacity: 0; transform: translateY(28px) scale(.985); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.js .section-reveal.show { opacity: 1; transform: translateY(0) scale(1); }


/* Sparkle particles (subtle) */
.spark{
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.2));
  box-shadow: 0 10px 22px rgba(79,70,229,.18);
  left: 0; top: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: .95;
  transform: translate3d(0,0,0) rotate(0deg);
  animation: spark .75s ease-out forwards;
}
@keyframes spark{
  to{
    transform: translate3d(var(--dx), var(--dy), 0) rotate(var(--r));
    opacity: 0;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .section-reveal { opacity: 1 !important; transform: none !important; }
}



/* ═════════════════════════════════════
   Gamification UI (light + fun)
═════════════════════════════════════ */

.xp-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight:600;
  color: var(--ink);
  white-space:nowrap;
}
.xp-pill .xp-level{ font-size:.85rem; opacity:.9; }
.xp-pill .xp-value{ font-size:.85rem; opacity:.85; }
.xp-pill .xp-bar{
  width:64px;
  height:8px;
  border-radius:999px;
  background: rgba(15,23,42,.08);
  overflow:hidden;
  position:relative;
}
.xp-pill .xp-bar > span{
  display:block;
  height:100%;
  width:0%;
  border-radius:999px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  box-shadow: 0 8px 20px rgba(129,140,248,.35);
}

/* Floating panel */
.game-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  width:54px;
  height:54px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.65);
  background: linear-gradient(135deg, rgba(129,140,248,.95), rgba(52,211,153,.95));
  box-shadow: 0 18px 50px rgba(15,23,42,.18);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  z-index: 60;
  transition: transform .18s ease, filter .18s ease;
}
.game-fab:hover{ transform: translateY(-2px) scale(1.02); filter: brightness(1.02); }

.game-panel{
  position:fixed;
  right:18px;
  bottom:86px;
  width:min(360px, calc(100vw - 36px));
  max-height: min(560px, calc(100vh - 120px));
  overflow:auto;
  border-radius:24px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.12);
  box-shadow: 0 30px 90px rgba(15,23,42,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 60;
  transform: translateY(10px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.game-panel.open{
  opacity:1;
  pointer-events:auto;
  transform: translateY(0) scale(1);
}

.game-panel-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px 10px;
  position: sticky;
  top:0;
  background: rgba(255,255,255,.88);
  border-bottom:1px solid rgba(15,23,42,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}
.game-title{
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:800;
  letter-spacing:-0.02em;
}
.game-close{
  width:36px;height:36px;border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.9);
  cursor:pointer;
}
.game-section{ padding: 12px 14px 14px; }
.game-subtitle{
  font-weight:800;
  font-size:.95rem;
  margin-bottom:6px;
}
.game-text{ color: var(--text-muted); font-size:.92rem; margin-bottom:10px; }

.mood-grid{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap:10px; }
@media (max-width:520px){ .mood-grid{ grid-template-columns:1fr; } }

.mood-btn{
  padding:10px 10px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.9);
  text-align:left;
  font-weight:700;
  cursor:pointer;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.mood-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
  border-color: rgba(129,140,248,.35);
}
.mood-btn.active{
  border-color: rgba(52,211,153,.55);
  box-shadow: 0 18px 40px rgba(52,211,153,.18);
}

.quest-list{
  list-style:none;
  padding:0;
  margin:10px 0 0;
  display:grid;
  gap:10px;
}
.quest-list li{
  padding:10px 12px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(248,250,252,.9);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:.95rem;
}
.quest-list li.done{
  background: rgba(52,211,153,.12);
  border-color: rgba(52,211,153,.28);
}
.quest-xp{
  font-weight:800;
  color: rgba(15,23,42,.55);
  font-size:.88rem;
  white-space:nowrap;
}
.secret-mission{
  width:100%;
  margin-top:10px;
  border-radius:18px;
  padding:12px 12px;
  border:1px solid rgba(129,140,248,.32);
  background: linear-gradient(135deg, rgba(129,140,248,.18), rgba(244,114,182,.18));
  font-weight:900;
  cursor:pointer;
  transition: transform .16s ease, box-shadow .16s ease;
}
.secret-mission:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(129,140,248,.18);
}

.toast{
  position:fixed;
  right:18px;
  bottom: 160px;
  padding:10px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.12);
  box-shadow: 0 20px 60px rgba(15,23,42,.18);
  transform: translateY(10px);
  opacity:0;
  pointer-events:none;
  z-index: 70;
  transition: opacity .18s ease, transform .18s ease;
  font-weight:700;
}
.toast.show{
  opacity:1;
  transform: translateY(0);
}

/* Visual strip (replaces the too-dark SVG) */
.ai-visual.visual-strip{
  padding: 14px;
  background:
    radial-gradient(ellipse 360px 160px at 15% 20%, rgba(129,140,248,.22) 0%, transparent 70%),
    radial-gradient(ellipse 360px 160px at 85% 35%, rgba(34,211,238,.18) 0%, transparent 70%),
    radial-gradient(ellipse 420px 180px at 55% 110%, rgba(244,114,182,.14) 0%, transparent 70%),
    rgba(255,255,255,.86);
}
.visual-strip{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 860px){
  .visual-strip{ grid-template-columns: 1fr 1fr; }
}
.visual-item{
  border-radius: 18px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  padding: 14px 14px;
  display:flex;
  flex-direction:column;
  gap:4px;
  min-height: 76px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  cursor: default;
}
.visual-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(15,23,42,.10);
  border-color: rgba(129,140,248,.28);
}
.vi-ic{ font-size: 20px; line-height:1; }
.vi-t{ font-weight:900; letter-spacing:-0.01em; }
.vi-s{ color: var(--text-muted); font-size: .92rem; }

/* Make action buttons feel more aligned + consistent */
.actions{ align-items:center; }
.btn{ border-radius: 18px; }
.btn-primary{
  background: linear-gradient(135deg, var(--amber), var(--teal));
  border: 0;
  box-shadow: 0 18px 50px rgba(129,140,248,.22);
}
.btn-primary:hover{ transform: translateY(-1px); filter: brightness(1.01); }
.btn-outline:hover{ border-color: rgba(129,140,248,.35); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .game-fab, .visual-item, .mood-btn, .secret-mission, .btn-primary { transition:none !important; }
}

.quest-list li.done::before{content:'✅'; margin-right:8px;}

@media (max-width: 920px){ .xp-pill{ display:none; } }

/* Small heading helper (avoid inline weird fonts) */
.mini-h3{
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  color: var(--text);
  font-size: .95rem;
  margin: 0 0 6px;
}

/* ══════════════════════════════════════════════
   NOTICE (No hardware repairs)
══════════════════════════════════════════════ */
.notice{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(245,158,11,.26);
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 16px 0 8px;
}
.notice-ic{
  width:34px; height:34px; flex: 0 0 34px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 12px;
  background: rgba(245,158,11,.14);
}
.notice-body{ color: rgba(15,23,42,.78); line-height: 1.4; }
.notice-body strong{ color: rgba(15,23,42,.92); }
