/* ==========================================================================
   SWARA DESIGN SYSTEM
   Typography: Plus Jakarta Sans
   Style: Minimalist Matte Dark, Sleek Charcoal & #3e3e3e, Clean Modern Aesthetic
   ========================================================================== */

@font-face {
  font-family: 'Manufacturing Consent';
  src: url('../fonts/ManufacturingConsent-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Modern Matte Dark Palette */
  --color-bg: #121212;
  --color-bg-subtle: #181818;
  --color-bg-card: #1e1e1e;
  --color-bg-elevated: #282828;
  
  --color-border: #333333;
  --color-border-subtle: #292929;
  --color-border-hover: #4a4a4a;
  --color-border-highlight: #555555;
  
  --color-accent: #e5e5e5;
  --color-accent-subtle: #3e3e3e;
  --color-primary: #ffffff;
  --color-primary-hover: #e0e0e0;
  
  --color-text: #f3f3f3;
  --color-text-muted: #a3a3a3;
  --color-text-dim: #737373;

  --color-tag-bg: #262626;
  --color-tag-border: #3e3e3e;
  --color-tag-text: #d4d4d4;

  --radius-xs: 0.25rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.7);

  --transition-fast: 0.15s ease;
  --transition-normal: 0.2s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  background-color: var(--color-bg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
h5 { font-size: 0.95rem; font-weight: 600; }

p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85em;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  padding: 0.15em 0.4em;
  border-radius: var(--radius-xs);
  color: #e5e5e5;
  word-break: break-all;
}

/* Utilities */
.text-muted { color: var(--color-text-muted) !important; }
.text-dim { color: var(--color-text-dim) !important; }
.text-accent { color: var(--color-accent) !important; }
.text-white { color: #ffffff !important; }
.text-success { color: #86efac !important; }
.text-danger { color: #fca5a5 !important; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-mono { font-family: ui-monospace, monospace; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.mx-auto { margin-inline: auto; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* Container */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (max-width: 640px) {
  .container {
    padding-inline: 1rem;
  }
}

/* Cards */
.dark-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal), background var(--transition-normal);
}

.dark-card:hover {
  border-color: var(--color-border-hover);
}

.dark-card-interactive {
  cursor: pointer;
}

.dark-card-interactive:hover {
  border-color: var(--color-border-highlight);
  background: var(--color-bg-elevated);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #ffffff;
  color: #121212;
  border: 1px solid #ffffff;
}

.btn-primary:hover {
  background: #e5e5e5;
  border-color: #e5e5e5;
}

.btn-secondary {
  background: var(--color-bg-card);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-bg-elevated);
  border-color: var(--color-border-hover);
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  border-radius: var(--radius-xs);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.btn-danger:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ffffff;
}

/* Badges & Tags */
.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-xs);
  background: var(--color-tag-bg);
  color: var(--color-tag-text);
  border: 1px solid var(--color-tag-border);
}

.tag-badge-accent {
  background: #2b2b2b;
  color: #ffffff;
  border-color: #4a4a4a;
}

.tag-badge-roleplay {
  background: #252229;
  color: #d8b4fe;
  border-color: #443c52;
}

/* Forms */
.form-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #666666;
  background: var(--color-bg-card);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--color-text-dim);
}

.form-select {
  cursor: pointer;
}
.form-select option {
  background: #1e1e1e;
  color: #f3f3f3;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

/* Header */
.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  flex-shrink: 0;
}

.brand-logo-svg {
  height: 20px;
  width: auto;
  max-width: 160px;
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  color: #ffffff;
  border-radius: var(--radius-sm);
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

@media (max-width: 768px) {
  .nav-container {
    padding-inline: 1rem;
    height: 3.5rem;
  }
  .brand-logo-svg {
    height: 18px;
    max-width: 130px;
  }
  .mobile-menu-btn {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: 3.5rem;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 22, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 1.25rem 1rem 1.5rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 99;
  }
  .nav-links.is-open {
    display: flex;
    animation: mobileMenuSlide 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.92rem;
    border-radius: var(--radius-xs);
  }
  .nav-links .btn {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
  }
}

@keyframes mobileMenuSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dashboard Shell */
.dashboard-layout {
  display: flex;
  min-height: calc(100vh - 4rem);
}

.dashboard-sidebar {
  width: 240px;
  background: var(--color-bg-subtle);
  border-right: 1px solid var(--color-border);
  padding: 1.5rem 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-dim);
  padding: 0.65rem 0.75rem 0.25rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.sidebar-item:hover {
  background: var(--color-bg-card);
  color: #ffffff;
}

.sidebar-item.active {
  background: var(--color-bg-card);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid var(--color-border);
}

.dashboard-main {
  flex: 1;
  padding: 2rem 2.5rem;
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

/* Vanity Bar */
.vanity-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.vanity-url-text {
  font-family: ui-monospace, monospace;
  font-size: 0.92rem;
  color: #ffffff;
  font-weight: 600;
}

/* Alerts */
.alert {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}

.alert-success {
  background: #1c271f;
  border: 1px solid #2d4533;
  color: #86efac;
}

.alert-error {
  background: #2a1b1b;
  border: 1px solid #4a2d2d;
  color: #fca5a5;
}

@media (max-width: 860px) {
  .dashboard-layout {
    flex-direction: column;
  }
  .dashboard-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .grid-cols-2, .grid-cols-3, .grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* ==========================================================================
   LANDING PAGE STYLES & INTERACTIVE BENTO
   ========================================================================== */
.landing-ambient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.landing-glow-1 {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 550px);
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(45px);
  will-change: transform;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  align-self: center;
  width: fit-content;
  max-width: 100%;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
  color: #e4e4e7;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1.35;
  text-align: center;
}

/* CTA Banner Card */
.cta-banner-card {
  padding: 3.5rem 2rem;
  text-align: center;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(28, 28, 34, 0.9) 0%, rgba(18, 18, 22, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.cta-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-width: 200px;
  max-width: 100%;
  margin-inline: auto;
  align-self: center;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
}

.hero-headline {
  font-size: clamp(1.85rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
  word-break: break-word;
}

.hero-subtext {
  font-size: clamp(0.92rem, 2.5vw, 1.05rem);
  color: #a1a1aa;
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Claim Box */
.claim-box-wrapper {
  background: rgba(24, 24, 28, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 0.45rem 0.5rem 0.45rem 1.15rem;
  max-width: 520px;
  width: 100%;
  margin-inline: auto;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  transition: all 0.2s ease;
}

.claim-box-wrapper:focus-within {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.85), 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.claim-input-group {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 0.2rem;
}

.claim-prefix {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92rem;
  font-weight: 700;
  color: #a1a1aa;
  white-space: nowrap;
  flex-shrink: 0;
}

.claim-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  min-width: 60px;
  padding: 0.3rem 0.1rem;
}

.claim-submit-btn {
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  border-radius: var(--radius-md) !important;
}

.claim-feedback {
  font-size: 0.78rem;
  font-family: ui-monospace, monospace;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  min-height: 22px;
}

@media (max-width: 520px) {
  .claim-box-wrapper {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.65rem;
    border-radius: var(--radius-md);
  }
  .claim-input-group {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.7rem 0.85rem;
    width: 100%;
  }
  .claim-prefix {
    font-size: 0.88rem;
    color: #8e8e93;
  }
  .claim-input {
    font-size: 0.92rem;
  }
  .claim-submit-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.92rem !important;
  }
  .claim-feedback {
    justify-content: center;
    text-align: center;
  }
}

/* Feature Bento Grid */
.bento-card {
  background: rgba(24, 24, 28, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6);
}

.bento-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1rem;
}

.bento-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.bento-desc {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Creator Showcase Card */
.creator-showcase-card {
  background: rgba(24, 24, 28, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  gap: 1.1rem;
  align-items: center;
  text-decoration: none;
}

.creator-showcase-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6);
}

.creator-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ==========================================================================
   SWARA Official Mascot Visuals (Clean Side-by-Side Hero)
   ========================================================================== */
.hero-split-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
  text-align: left;
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.hero-content-col .hero-pill-badge {
  margin-inline: 0;
  margin-bottom: 1.15rem;
}

.hero-content-col .hero-headline {
  text-align: left;
  margin-bottom: 1rem;
}

.hero-content-col .hero-subtext {
  text-align: left;
  margin-inline: 0;
  margin-bottom: 1.75rem;
}

.hero-content-col .claim-box-wrapper {
  margin-inline: 0;
  width: 100%;
}

.hero-highlights-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #a1a1aa;
}

.hero-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-mascot-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mascot-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mascot-side-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease;
}

.hero-mascot-side-img:hover {
  transform: translateY(-4px) scale(1.02);
}

@media (max-width: 960px) {
  .hero-split-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }
  .hero-content-col {
    align-items: center;
  }
  .hero-content-col .hero-pill-badge {
    margin-inline: auto;
  }
  .hero-content-col .hero-headline {
    text-align: center;
  }
  .hero-content-col .hero-subtext {
    text-align: center;
    margin-inline: auto;
  }
  .hero-content-col .claim-box-wrapper {
    margin-inline: auto;
  }
  .hero-content-col .claim-feedback {
    justify-content: center !important;
  }
  .hero-highlights-row {
    justify-content: center;
  }
  .hero-mascot-side-img {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.7rem;
    line-height: 1.2;
  }
  .hero-pill-badge {
    font-size: 0.68rem;
    padding: 0.28rem 0.65rem;
  }
  .claim-box-wrapper {
    padding: 0.35rem 0.4rem 0.35rem 0.65rem;
    gap: 0.25rem;
  }
  .claim-prefix {
    font-size: 0.8rem;
  }
  .claim-input {
    font-size: 0.85rem;
    min-width: 60px;
  }
  .claim-box-wrapper .btn-sm {
    padding: 0.42rem 0.65rem;
    font-size: 0.78rem;
  }
  .hero-highlights-row {
    font-size: 0.75rem;
    gap: 0.75rem;
  }
  .hero-mascot-side-img {
    max-width: 170px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
  }
  .creator-showcase-card {
    padding: 1rem;
    gap: 0.75rem;
  }
  .creator-avatar {
    width: 50px;
    height: 50px;
  }
  .bento-card {
    padding: 1.2rem 1rem;
  }
}

/* CTA Mascot Visual */
.cta-banner-card.cta-with-mascot {
  position: relative !important;
  overflow: hidden !important;
  display: block !important;
  text-align: left !important;
  padding: 3.25rem 3.5rem !important;
  min-height: 270px;
}

.cta-content-wrapper {
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.cta-mascot-img {
  position: absolute !important;
  right: 2rem;
  top: 10px;
  bottom: -60px;
  height: calc(100% + 50px);
  width: auto;
  max-width: 360px;
  object-fit: contain;
  object-position: top right;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.85));
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 1024px) {
  .cta-mascot-img {
    right: 3rem;
    top: 5px;
    bottom: -70px;
    height: calc(100% + 65px);
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .cta-banner-card.cta-with-mascot {
    padding: 2.25rem 1.25rem !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .cta-content-wrapper {
    max-width: 100%;
    margin-inline: auto;
  }
  .cta-mascot-img {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    height: auto !important;
    max-height: 160px;
    max-width: 160px;
    margin-top: 1.5rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
  }
}

/* ==========================================================================
   Creator Category Filter Bar & Category Badges
   ========================================================================== */
.creator-category-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding: 0.25rem 0 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.creator-category-bar::-webkit-scrollbar {
  display: none;
}

.category-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-tab-btn svg {
  transition: transform 0.2s ease;
  opacity: 0.75;
}

.category-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.category-tab-btn:hover svg {
  transform: scale(1.1);
  opacity: 1;
}

.category-tab-btn.active {
  color: #ffffff;
  background: #27272a;
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 12px rgba(255, 255, 255, 0.08);
}

.category-tab-btn.active svg {
  opacity: 1;
}

/* Category Badges on Creator Cards */
.category-pill-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.18rem 0.55rem;
  border-radius: 9999px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.category-pill-tag.tag-asmr {
  background: rgba(168, 85, 247, 0.14);
  border: 1px solid rgba(168, 85, 247, 0.38);
  color: #d8b4fe;
}

.category-pill-tag.tag-vtuber {
  background: rgba(6, 182, 212, 0.14);
  border: 1px solid rgba(6, 182, 212, 0.38);
  color: #67e8f9;
}

.category-pill-tag.tag-youtuber {
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.38);
  color: #fca5a5;
}

.category-pill-tag.tag-singer {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.38);
  color: #fde047;
}

.category-pill-tag.tag-gamer {
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.38);
  color: #6ee7b7;
}

/* Empty State Card */
.no-creators-empty-card {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1.5rem;
  background: rgba(20, 20, 24, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 0.5rem;
}

.empty-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #a1a1aa;
}


