:root {
  --primary: #2563eb;
  --primary_glass: RGB(13, 98, 226, 0.1);
  --accent: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --bg: #ffffff;
  --card: #ffffff;
  --border: #e5e7eb;
  --text: #0f172a;
  --muted: #64748b;
  --glass: rgba(255, 255, 255, 0.6);
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Nanum Gothic", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  padding-top: 64px;
  overflow-x: hidden;
  /* Global fix for horizontal scrollbar */
}

@supports (-webkit-touch-callout: none) {

  input,
  textarea,
  select {
    font-size: 16px;
  }
}

/* ... existing code ... */

.curriculum-card {
  width: 450px;
  /* Slightly wider */
  height: 550px;
  /* Taller */
  flex-shrink: 0;
  background: white;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
  /* Clips the big number if needed */
}

.curriculum-card:hover {
  transform: translateY(-10px);
}

.step-num {
  font-size: 80px;
  font-weight: 900;
  color: rgba(139, 92, 246, 0.05);
  position: absolute;
  top: -10px;
  right: 20px;
  line-height: 1;
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.card-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-purple);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.name-with-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.role-badge {
  width: 17px;
  object-fit: contain;
  vertical-align: middle;
}

.role-badge-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  outline: none;
}

.role-badge-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  min-width: 220px;
  max-width: 280px;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid #dbeafe;
  background: rgba(15, 23, 42, 0.94);
  color: #f8fafc;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 80;
}

.role-badge-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -40%) rotate(45deg);
  background: rgba(15, 23, 42, 0.94);
  border-right: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
  word-break: keep-all;
}

.role-badge-wrap:hover .role-badge-tooltip,
.role-badge-wrap:focus-visible .role-badge-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.container {
  width: min(1480px, 92%);
  margin: 0 auto;
}

/* Global sidebar (dashboard/partials) */
.sidebar {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(248, 250, 252, 0.96) 100%);
  border-right: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
  padding: 18px 14px 20px;
  gap: 16px;
  position: fixed;
  top: 64px;
  left: 0;
  width: 260px;
  z-index: 6;
  height: calc(100vh - 64px);
  max-height: calc(100vh - 64px);
  overflow: hidden;
}

.sidebar-header {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.sidebar .sidebar-title {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.sidebar-nav {
  display: grid;
  gap: 10px;
}

.sidebar .sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  background: transparent;
  border: 1px solid transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.sidebar .sidebar-link:hover,
.sidebar .sidebar-link:focus-visible {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.12);
  transform: translateX(2px);
}

.sidebar .sidebar-link.active {
  background: linear-gradient(135deg,
      rgba(37, 99, 235, 0.2),
      rgba(37, 99, 235, 0.06));
  color: var(--primary);
  font-weight: 700;
  border-color: rgba(37, 99, 235, 0.2);
}

.sidebar .sidebar-link.disabled {
  opacity: 0.45;
  pointer-events: none;
  color: var(--muted);
}

.sidebar-icon {
  width: 18px;
  height: 18px;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-icon svg {
  width: 18px;
  height: 18px;
}

.sidebar .sidebar-link.active .sidebar-icon {
  color: #1d4ed8;
}

.sidebar .sidebar-link.disabled .sidebar-icon {
  color: #94a3b8;
}

.sidebar-divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.25);
  margin: 6px 6px;
}

.sidebar-text {
  white-space: nowrap;
}

.sidebar-badges {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.sidebar-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.sidebar-badge.neutral {
  color: #475569;
  background: rgba(148, 163, 184, 0.15);
  border-color: rgba(148, 163, 184, 0.35);
}

.sidebar-external {
  margin-left: auto;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #64748b;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.sidebar-external svg {
  width: 11px;
  height: 11px;
}

.sidebar-support {
  margin-top: auto;
  padding: 14px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: grid;
  gap: 10px;
}

.sidebar-support-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.sidebar-support-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.sidebar-support .support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  box-shadow: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.sidebar-support .support-btn:hover,
.sidebar-support .support-btn:focus-visible {
  background: #1d4ed8;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .sidebar {
    position: sticky;
    top: 64px;
    z-index: 5;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    padding: 16px 14px 18px;
    height: auto;
    max-height: none;
  }

  .sidebar-nav {
    gap: 10px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0;
  gap: 16px;
  position: relative;
  z-index: 2;
  background: inherit;
  transition: padding 0.3s ease;
}

.header-nav {
  display: flex;
  align-items: center;
  margin-left: 0;
  padding: 0;
  max-height: 48px;
  overflow: hidden;
  min-width: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
  transform-origin: top;
  position: relative;
  z-index: 1;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 25px;
  height: auto;
  display: block;
  transition: width 0.3s ease;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: font-size 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #475569;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
}

.nav-link.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* Mobile specific overrides */
.mobile-only {
  display: none;
}

@media (max-width: 720px) {
  .mobile-hide {
    display: none !important;
  }

  .mobile-only {
    display: inline-flex;
  }

  .header-top {
    padding: 10px 0 6px;
    flex-wrap: wrap;
  }

  .header-nav {
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
    justify-content: center;
    padding: 6px 0 0;
    max-height: 120px;
  }

  /* Scroll Hide Logic (Mobile Only) */
  .site-header.scroll-down .header-nav {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    padding: 0;
  }

  .site-header.scroll-up .header-nav {
    transform: translateY(0);
    opacity: 1;
    max-height: 120px;
  }

  .site-header.scroll-up .header-nav {
    flex-basis: 100%;
    margin-left: 0;
    max-height: 120px;
  }

  .site-header.scroll-down .header-nav {
    flex-basis: 0;
    max-height: 0;
  }

  .site-header.scroll-down .header-top {
    padding: 6px 0;
  }

  .site-header.scroll-down .logo-mark {
    width: 22px;
  }

  .site-header.scroll-down .logo-text {
    font-size: 16px;
  }

  .nav-links {
    gap: 12px;
    font-size: 11px;
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 2px;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    padding: 4px 8px;
    white-space: nowrap;
  }

  .logo-text {
    font-size: 18px;
  }

  .header-left {
    order: 1;
  }

  .header-right {
    order: 2;
    gap: 10px;
  }

  .header-icons {
    gap: 10px;
  }
}

.header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 12px;
  flex-shrink: 0;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-menu {
  position: relative;
}

.header-dropdown {
  position: absolute;
  top: 44px;
  right: 0;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: none;
  gap: 12px;
  z-index: 20;
}

.header-dropdown.is-open {
  display: grid;
}

.search-dropdown {
  width: 320px;
}

.search-title {
  font-weight: 600;
  font-size: 14px;
}

.search-input {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.lang-dropdown {
  min-width: 180px;
}

.lang-option {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.lang-option:hover,
.lang-option.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.notice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.notice-title {
  font-weight: 700;
  font-size: 14px;
}

.notice-clear {
  border: 1px solid var(--border);
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  cursor: pointer;
}

.notice-clear:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.notice-cards {
  display: grid;
  gap: 10px;
}

.notice-card {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.85);
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.notice-card.is-new {
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.08);
}

.notice-card.is-new .notice-icon {
  background: var(--primary_glass);
  color: var(--primary);
}

.notice-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

.notice-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.12);
  display: grid;
  place-items: center;
  font-size: 16px;
}

.notice-content {
  display: grid;
  gap: 4px;
}

.notice-text {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.notice-sub {
  font-size: 12px;
  color: var(--muted);
}

.notice-empty {
  font-size: 12px;
  color: #94a3b8;
  padding: 8px 4px;
}

.icon-button {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  color: #475569;
  transition: color 0.2s ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.14);
  transform: translateY(-1px);
}

.icon-button:hover svg,
.icon-button:focus-visible svg {
  color: var(--primary);
}

.badge-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  border-radius: 999px;
  padding: 2px 6px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.divider {
  width: 1px;
  height: 24px;
  background: rgba(148, 163, 184, 0.3);
}

.avatar-menu {
  position: relative;
}

.avatar-button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
}

.avatar-button:hover .avatar,
.avatar-button:focus-visible .avatar {
  background: rgba(37, 99, 235, 0.18);
  color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.avatar-dropdown {
  position: absolute;
  top: 46px;
  right: 0;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  gap: 12px;
  z-index: 20;
}

.avatar-dropdown.is-open {
  display: grid;
}

.avatar-info {
  display: grid;
  gap: 4px;
}

.avatar-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.avatar-large {
  width: 56px;
  height: 56px;
  font-size: 16px;
}

.avatar-profile-visual {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.avatar-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.avatar-rank {
  font-size: 12px;
  color: var(--muted);
}

.avatar-rank strong {
  color: var(--text);
  font-weight: 600;
}

.avatar-name {
  font-weight: 600;
  font-size: 14px;
}

.avatar-id {
  font-size: 12px;
  color: var(--muted);
  word-break: break-all;
}

.avatar-links {
  display: grid;
  gap: 8px;
}

.avatar-link {
  font-size: 13px;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 10px;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.avatar-link:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #a5f3c2;
  color: #16a34a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  z-index: 1;
}

.plan-badge--mini {
  position: absolute;
  right: -6px;
  bottom: -4px;
  font-size: 9px;
  padding: 2px 6px;
  box-shadow: 0 0 0 2px #fff;
  z-index: 2;
}

.section-title {
  margin-bottom: 32px;
}

.section-title h2,
.section-title h1 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent);
  font-size: 13px;
}

.badge.soft {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-size: 14px;
}

.btn:disabled,
.btn.is-loading {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

.btn.ghost .btn-spinner {
  border-color: rgba(15, 23, 42, 0.2);
  border-top-color: var(--primary);
}

.btn.small {
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 12px;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 20px rgba(37, 99, 235, 0.3);
}

.btn.ghost {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn.text {
  background: transparent;
  color: var(--muted);
}

.btn:hover {
  transform: translateY(-2px);
}

.plan-features {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(420px, 92%);
  padding: 28px;
  text-align: center;
  display: grid;
  gap: 14px;
}

.modal-large {
  width: min(720px, 92%);
  text-align: left;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.modal-body {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 4px;
}

.modal-body h3 {
  color: var(--text);
  font-size: 14px;
  margin-top: 6px;
}

.modal-body ul {
  list-style: disc;
  padding-left: 20px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #0f172a;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 30;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9),
      rgba(239, 246, 255, 0.9));
  backdrop-filter: blur(12px);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(240px, 2fr);
  gap: 40px;
  align-items: start;
}

.footer-brand p {
  color: var(--muted);
  margin: 14px 0 18px;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.footer-column {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 32px;
  padding-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.w-32 {
  width: 32px;
  height: auto;
}

.w-24 {
  width: 24px;
  height: auto;
}

.w-36 {
  width: 36px;
  height: auto;
}

.w-\[480px\] {
  width: 480px;
}

.w-\[420px\] {
  width: 420px;
}

.h-auto {
  height: auto;
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}