/* === B2BAI Common Design System === */
:root {
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #868e96;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --accent-bg: rgba(37,99,235,0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --max-w: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { background: var(--white); }
body {
  font-family: 'Pretendard', 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--gray-800);
  background: var(--white);
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* === Navigation === */
.cc-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.cc-nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 24px;
}
.cc-logo {
  font-size: 1.85rem; font-weight: 900; letter-spacing: -0.04em;
  color: var(--black);
}
.cc-logo span { color: var(--accent); }
.cc-nav-links { display: flex; align-items: center; gap: 32px; }
.cc-nav-links a {
  font-size: 0.9rem; font-weight: 600; color: var(--gray-600);
  transition: color 0.2s;
}
.cc-nav-links a:hover { color: var(--black); }
.cc-nav-links a.active { color: var(--black); }
.cc-nav-right { display: flex; align-items: center; gap: 12px; }
.cc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px; font-size: 0.875rem; font-weight: 700;
  border-radius: 100px; border: none; cursor: pointer;
  transition: all 0.2s;
}
.cc-btn-fill {
  background: var(--black); color: var(--white);
}
.cc-btn-fill:hover { background: var(--gray-700); }
.cc-btn-outline {
  background: transparent; color: var(--gray-600);
  border: 1.5px solid var(--gray-300);
}
.cc-btn-outline:hover { border-color: var(--black); color: var(--black); }
.cc-btn-accent {
  background: var(--accent); color: var(--white);
}
.cc-btn-accent:hover { background: var(--accent-light); }

/* Mobile nav */
.cc-nav-mobile {
  display: flex; gap: 4px; padding: 0 24px 14px;
  overflow-x: auto; scrollbar-width: none;
}
.cc-nav-mobile::-webkit-scrollbar { display: none; }
.cc-nav-mobile a {
  flex-shrink: 0; font-size: 0.875rem; font-weight: 600;
  color: var(--gray-500); padding: 6px 12px;
  border-radius: 100px; transition: all 0.2s;
  white-space: nowrap;
}
.cc-nav-mobile a.active {
  background: var(--black); color: var(--white);
}

/* Auth */
body.auth-loading .btn-login-wrap { visibility: hidden; }
.btn-login-wrap { display: flex; align-items: center; gap: 8px; }

/* === Page Hero (sub pages) === */
.cc-page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 36px 24px 32px;
  text-align: center;
}
.cc-page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.15), transparent 60%);
  pointer-events: none;
}
.cc-page-hero > * { position: relative; z-index: 2; }
.cc-page-hero .hero-title-row {
  display: inline-flex; align-items: center; gap: 12px;
  justify-content: center;
  animation: hero-fadeUp 0.8s ease-out both;
}
.cc-page-hero .emoji {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  display: inline-block;
  flex-shrink: 0;
  line-height: 1;
}
.cc-page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -0.03em; line-height: 1.2;
}
.cc-page-hero p {
  margin-top: 8px; font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  animation: hero-fadeUp 1.0s ease-out both;
}

/* === Main Hero (index) === */
.cc-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 520px;
  display: flex; align-items: center;
}
.cc-hero-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: 60px 24px 80px;
  position: relative; z-index: 2;
}
.cc-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: none;
  padding: 0; border-radius: 0;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-light);
  margin-bottom: 28px;
  animation: hero-fadeUp 0.6s ease-out both;
}
.cc-hero-badge::before {
  content: ''; display: block; width: 32px; height: 2px;
  background: var(--accent-light);
}
.cc-hero-badge .dot { display: none; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.cc-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--white);
  max-width: 600px;
  animation: hero-fadeUp 0.8s ease-out both;
}
@keyframes hero-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cc-hero h1 .highlight {
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #c084fc, #60a5fa);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 4s ease infinite;
  filter: drop-shadow(0 0 28px rgba(139,92,246,0.5));
  position: relative;
}
@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cc-hero-desc {
  margin-top: 24px; font-size: 1.05rem; line-height: 1.7;
  color: rgba(255,255,255,0.5); max-width: 400px;
  animation: hero-fadeUp 1.0s ease-out both;
}
.cc-hero-actions {
  margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap;
  animation: hero-fadeUp 1.2s ease-out both;
}
.cc-hero-actions .cc-btn-fill {
  background: var(--white); color: var(--black);
  padding: 14px 32px; font-size: 0.95rem;
  border-radius: 100px;
}
.cc-hero-actions .cc-btn-fill:hover { background: var(--gray-100); }
.cc-hero-actions .cc-btn-ghost {
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 14px 28px; font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 100px; cursor: pointer; font-weight: 700;
  font-family: inherit; transition: all 0.2s;
}
.cc-hero-actions .cc-btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

/* Hero photo */
.cc-hero-photo {
  position: absolute; right: 160px; bottom: -100px;
  width: 50%; max-width: 432px;
  display: none;
}
.cc-hero-photo img { width: 100%; height: auto; display: block; }
@media (min-width: 768px) {
  .cc-hero-photo { display: block; }
}

/* Hero gradient overlay */
.cc-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.15), transparent 60%);
  pointer-events: none;
}

/* === Stats Bar === */
.cc-stats {
  background: var(--gray-50);
  padding: 0 24px;
}
.cc-stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.cc-stat {
  padding: 32px 16px; text-align: center;
}
.cc-stat-num {
  font-size: 2rem; font-weight: 900; letter-spacing: -0.03em;
  color: var(--black);
}
.cc-stat-label {
  margin-top: 4px; font-size: 0.8rem; font-weight: 600;
  color: var(--gray-500);
}

/* === Section === */
.cc-section {
  padding: 72px 24px;
  max-width: var(--max-w); margin: 0 auto;
}
.cc-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px;
}
.cc-section-title {
  font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--black);
}
.cc-section-sub {
  margin-top: 8px; font-size: 0.95rem; color: var(--gray-500);
  line-height: 1.5;
}
.cc-more {
  font-size: 0.875rem; font-weight: 700; color: var(--accent);
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap; transition: gap 0.2s;
}
.cc-more:hover { gap: 8px; }

/* === Cards === */
.cc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  border: 1px solid var(--gray-200);
}
.cc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}
.cc-card-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; display: block;
  background: var(--gray-100);
}
.cc-card-body { padding: 24px; }
.cc-card-badge {
  display: inline-flex; padding: 4px 12px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 700;
  margin-bottom: 12px;
}
.cc-card-badge-blue { background: var(--accent-bg); color: var(--accent); }
.cc-card-badge-green { background: rgba(22,163,74,0.08); color: #16a34a; }
.cc-card-badge-orange { background: rgba(234,88,12,0.08); color: #ea580c; }
.cc-card-badge-purple { background: rgba(147,51,234,0.08); color: #9333ea; }
.cc-card-badge-live {
  background: #ef4444; color: white;
  animation: pulse-dot 2s infinite;
}
.cc-card-title {
  font-size: 1.125rem; font-weight: 700; color: var(--black);
  line-height: 1.4; letter-spacing: -0.01em;
}
.cc-card-desc {
  margin-top: 8px; font-size: 0.875rem; color: var(--gray-500);
  line-height: 1.6;
}
.cc-card-meta {
  margin-top: 16px; font-size: 0.8rem; color: var(--gray-400);
  display: flex; align-items: center; gap: 8px;
}

/* Grid layouts */
.cc-grid-2 {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.cc-grid-3 {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) {
  .cc-grid-2 { grid-template-columns: 1fr 1fr; }
  .cc-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .cc-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* === Featured / Highlight Card === */
.cc-featured {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  min-height: 160px; display: flex; align-items: flex-end;
  transition: transform 0.25s;
}
.cc-featured:hover { transform: scale(1.01); }
.cc-featured-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 100%);
}
.cc-featured-content {
  position: relative; z-index: 2;
  padding: 24px; width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.cc-featured h3 {
  font-size: 1.5rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.02em;
}
.cc-featured p {
  margin-top: 8px; font-size: 0.95rem; color: rgba(255,255,255,0.7);
}

/* === Community List === */
.cc-list-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s; cursor: pointer;
}
.cc-list-item:hover { padding-left: 8px; }
.cc-list-item:last-child { border-bottom: none; }
.cc-list-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.25rem;
}
.cc-list-content { flex: 1; min-width: 0; }
.cc-list-title {
  font-size: 1rem; font-weight: 600; color: var(--black);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cc-list-sub {
  margin-top: 4px; font-size: 0.8rem; color: var(--gray-400);
  display: flex; align-items: center; gap: 6px;
}
.cc-list-arrow {
  color: var(--gray-300); font-size: 1.2rem; flex-shrink: 0;
  transition: color 0.2s;
}
.cc-list-item:hover .cc-list-arrow { color: var(--accent); }

/* === Instructor Section === */
.cc-instructor-section {
  background: var(--gray-50);
  padding: 72px 24px;
}
.cc-instructor {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; gap: 48px; align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .cc-instructor { flex-direction: row; }
}
.cc-instructor-photo {
  width: 240px; height: 300px; border-radius: var(--radius);
  overflow: hidden; flex-shrink: 0;
  background: var(--gray-200);
}
.cc-instructor-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}
.cc-instructor-info { flex: 1; }
.cc-instructor-info .label {
  font-size: 0.8rem; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.cc-instructor-info h2 {
  margin-top: 8px; font-size: 2rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.cc-instructor-info .role {
  margin-top: 4px; font-size: 0.95rem; color: var(--gray-500);
}
.cc-instructor-info .bio {
  margin-top: 20px; font-size: 1rem; line-height: 1.7;
  color: var(--gray-600);
}
.cc-instructor-tags {
  margin-top: 20px; display: flex; gap: 8px; flex-wrap: wrap;
}
.cc-tag {
  padding: 6px 14px; border-radius: 100px; font-size: 0.8rem;
  font-weight: 600; background: var(--white); color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

/* === CTA Section === */
.cc-cta {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #a855f7 100%);
  padding: 80px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cc-cta::before {
  content: '';
  position: absolute; inset: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(circle 300px at 20% 50%, rgba(59,130,246,0.7), transparent),
    radial-gradient(circle 250px at 80% 30%, rgba(255,255,255,0.15), transparent),
    radial-gradient(circle 200px at 50% 80%, rgba(236,72,153,0.5), transparent),
    radial-gradient(circle 280px at 70% 60%, rgba(34,211,238,0.4), transparent),
    radial-gradient(circle 220px at 30% 20%, rgba(249,115,22,0.4), transparent);
  animation: cta-rotate 12s linear infinite;
}
.cc-cta::after {
  content: '';
  position: absolute; inset: 0;
  background:
    conic-gradient(from 0deg at 30% 40%, transparent, rgba(255,255,255,0.12), transparent, rgba(59,130,246,0.3), transparent),
    conic-gradient(from 180deg at 70% 60%, transparent, rgba(236,72,153,0.25), transparent, rgba(34,211,238,0.2), transparent);
  animation: cta-rotate 20s linear infinite reverse;
  mix-blend-mode: screen;
}
@keyframes cta-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.cc-cta > * { position: relative; z-index: 2; }
.cc-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.02em;
}
.cc-cta p {
  margin-top: 12px; font-size: 1rem; color: var(--gray-400);
}
.cc-cta .cc-btn {
  margin-top: 32px; padding: 16px 36px;
  font-size: 0.95rem;
}

/* === Footer === */
.cc-footer {
  background: var(--gray-50);
  padding: 48px 24px 32px;
}
.cc-footer-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.cc-footer-brand {
  font-size: 1rem; font-weight: 800; color: var(--black);
}
.cc-footer-info {
  margin-top: 16px; font-size: 0.8rem; line-height: 1.8;
  color: var(--gray-500);
}
.cc-footer-copy {
  margin-top: 24px; font-size: 0.75rem; color: var(--gray-400);
}
.cc-footer-links {
  margin-top: 12px; display: flex; gap: 20px;
}
.cc-footer-links a {
  font-size: 0.8rem; font-weight: 600; color: var(--gray-500);
  transition: color 0.2s;
}
.cc-footer-links a:hover { color: var(--black); }

/* === Tab Bar === */
.cc-tabbar {
  position: fixed; bottom: 0; left: 0; width: 100%;
  height: 64px; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--gray-100);
}
.cc-tabbar-inner {
  max-width: 600px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-around;
}
.cc-tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--gray-400); transition: color 0.2s;
}
.cc-tab.active { color: var(--black); }
.cc-tab svg { width: 22px; height: 22px; }
.cc-tab span { font-size: 0.65rem; font-weight: 700; }

/* === Modal === */
.cc-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
}
.cc-modal-overlay.modal-show { display: flex; }
.cc-modal {
  width: calc(100% - 32px); max-width: 400px;
  background: var(--white); border-radius: 24px;
  padding: 40px 32px 32px; text-align: center;
}
.cc-modal h3 {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em;
}
.cc-modal p {
  margin-top: 8px; font-size: 0.9rem; color: var(--gray-500);
  line-height: 1.5;
}
.cc-modal .btn-google {
  margin-top: 24px; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  height: 52px; background: var(--black); color: var(--white);
  font-size: 0.9rem; font-weight: 700;
  border: none; cursor: pointer; border-radius: 100px;
  font-family: inherit; transition: background 0.2s;
}
.cc-modal .btn-google:hover { background: var(--gray-700); }
.cc-modal .btn-close {
  margin-top: 12px; width: 100%;
  font-size: 0.875rem; font-weight: 600; color: var(--gray-400);
  background: none; border: none; padding: 12px; cursor: pointer;
  font-family: inherit;
}

/* === FABs === */
.cc-fabs {
  position: fixed; z-index: 40; right: 20px; bottom: 84px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.cc-fab {
  width: 52px; height: 52px;
  background: #7c3aed; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cc-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.cc-fab-accent { background: var(--accent); }

/* === Responsive === */
@media (max-width: 767px) {
  .cc-nav-links { display: none; }
  .cc-nav-inner { height: 56px; padding: 0 16px; }
  .cc-btn { padding: 8px 16px; font-size: 0.8rem; }
  .cc-nav-mobile { padding: 0 16px 10px; }
  .cc-hero { min-height: 380px; }
  .cc-hero-inner { padding: 32px 20px 48px; }
  .cc-hero-desc { font-size: 0.9rem; }
  .cc-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cc-stat { padding: 24px 12px; }
  .cc-stat-num { font-size: 1.5rem; }
  .cc-section { padding: 48px 20px; }
  .cc-section-title { font-size: 1.375rem; }
  .cc-instructor-photo { width: 100%; height: 280px; }
  .cc-instructor-section { padding: 48px 20px; }
  .cc-cta { padding: 56px 20px; }
  .cc-page-hero { padding: 28px 16px 24px; }
}
@media (min-width: 768px) {
  .cc-nav-mobile { display: none; }
  .cc-nav-inner { height: 72px; }
}

/* === Curriculum List === */
.cur-list {
  max-width: var(--max-w); margin: 0 auto;
  padding: 32px 24px 48px;
  display: flex; flex-direction: column; gap: 12px;
}
.cur-list-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: #f1f5f9;
  border-radius: 14px;
  text-decoration: none; color: inherit;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.cur-list-item:hover {
  background: #fef9c3;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.cur-list-emoji { font-size: 1.8rem; flex-shrink: 0; }
.cur-list-content { flex: 1; min-width: 0; }
.cur-list-content h3 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--black); line-height: 1.4;
}
.cur-list-content p {
  margin-top: 4px; font-size: 0.82rem;
  color: var(--gray-500); line-height: 1.4;
}
.cur-list-badge {
  flex-shrink: 0;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(37,99,235,0.1);
  font-size: 0.75rem; font-weight: 700;
  color: var(--accent);
}
.cur-list-arrow {
  flex-shrink: 0; color: var(--gray-400);
  transition: transform 0.2s;
}
.cur-list-item:hover .cur-list-arrow {
  transform: translateX(4px); color: var(--accent);
}

/* === Curriculum Gradient Cards === */
.cur-card-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 32px 24px 48px;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) {
  .cur-card-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .cur-card-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.cur-gradient-card {
  background: var(--card-grad, linear-gradient(135deg, #1e3a5f, #2563eb));
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  color: var(--white); text-decoration: none;
  position: relative; overflow: hidden;
  min-height: 180px;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.cur-gradient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.cur-gradient-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.cur-gradient-card .cur-card-emoji {
  font-size: 2rem;
}
.cur-gradient-card .cur-card-content { flex: 1; position: relative; z-index: 1; }
.cur-gradient-card .cur-card-content h3 {
  font-size: 1.125rem; font-weight: 800;
  line-height: 1.4; letter-spacing: -0.01em;
}
.cur-gradient-card .cur-card-content p {
  margin-top: 8px; font-size: 0.8rem;
  color: rgba(255,255,255,0.65); line-height: 1.5;
}
.cur-gradient-card .cur-card-badge {
  display: inline-flex; align-self: flex-start;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.15);
  font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.9);
  position: relative; z-index: 1;
}

/* Hidden elements */
#adminMenu { display: none; }
.app-wrapper { padding-bottom: 80px; }

/* Divider */
.cc-divider {
  height: 1px; background: var(--gray-100);
  max-width: var(--max-w); margin: 0 auto;
}
