:root {
  --bg: #060606;
  --bg-soft: #0b0b0b;
  --border: #1c1c1c;
  --text: #f2f2f2;
  --muted: #a6a6a6;
  --faint: #6f6f6f;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.04em;
}

.nav-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-logo {
  width: 168px;
  height: 168px;
  object-fit: contain;
  margin-bottom: 40px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(52px, 8vw, 84px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero-tagline {
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 26px);
  color: #cfcfcf;
}

.hero-desc {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15.5px;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 38px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-primary:hover:not([disabled]) {
  background: #c9c9c9;
  border-color: #c9c9c9;
}

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

.btn-ghost:hover:not([disabled]) {
  color: var(--text);
  border-color: #3a3a3a;
}

.btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.hero-note {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}

.section {
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 46px);
  line-height: 1.15;
  margin-bottom: 26px;
}

.section-text {
  color: var(--muted);
  max-width: 760px;
  font-size: 17.5px;
}

.section-text p + p {
  margin-top: 18px;
}

.lead {
  font-family: var(--serif);
  font-size: 21px;
  color: #cfcfcf;
}

.features {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 34px 30px;
}

.feature-num {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--faint);
  display: block;
  margin-bottom: 14px;
}

.feature-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 8px;
}

.feature-text {
  color: var(--muted);
  font-size: 15.5px;
}

.empty {
  margin-top: 42px;
  border: 1px dashed var(--border);
  padding: 70px 24px;
  text-align: center;
}

.empty-mark {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--text);
  margin-bottom: 10px;
}

.empty-text {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.page-head {
  padding: 180px 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 60px);
}

.page-sub {
  margin-top: 16px;
  color: var(--muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16.5px;
}

.chips {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.chip {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 20px;
}

.team {
  margin-top: 70px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 40px;
}

.team-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  text-align: center;
  padding: 30px 24px 34px;
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 22px;
  background: #111;
}

.team-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.team-role {
  margin-top: 6px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.legal {
  padding: 150px 0 90px;
}

.legal-block {
  margin-bottom: 60px;
}

.legal-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 34px;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 34px;
}

.legal-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 44px 0;
}

.legal h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin: 34px 0 10px;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 16px;
}

.legal ul {
  margin: 12px 0 12px 18px;
}

.legal li + li {
  margin-top: 6px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 70px 0 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.04em;
}

.footer-tag {
  margin-top: 8px;
  color: var(--faint);
  font-size: 13.5px;
  max-width: 300px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-heading {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--faint);
  font-size: 13px;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.course-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
}

.course-name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.course-note {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--faint);
}

.course-monthly {
  margin-top: 16px;
  font-size: 30px;
  letter-spacing: 0.01em;
  color: var(--text);
}

.course-monthly strong {
  color: var(--accent);
  font-weight: 600;
}

.course-levels {
  list-style: none;
  margin-top: 24px;
  flex: 1;
}

.course-levels li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--muted);
}

.course-levels li span:last-child {
  color: var(--text);
  font-weight: 500;
}

.course-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #2a2a2a;
}

.course-total-label {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.course-price {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.btn-buy {
  margin-top: 24px;
  width: 100%;
  text-align: center;
  padding: 14px 0;
}

.btn-more {
  margin-top: 10px;
}

.btn-soft {
  background: rgba(255, 255, 255, 0.04);
  border-color: #262626;
}

.btn-soft:hover:not([disabled]) {
  background: rgba(255, 255, 255, 0.09);
  border-color: #3a3a3a;
}

.topic-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 30px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-5px);
  border-color: #333;
}

.topic-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 18px;
}

.topic-list {
  list-style: none;
}

.topic-list li {
  color: var(--muted);
  font-size: 14.5px;
  padding: 6px 0 6px 16px;
  position: relative;
}

.topic-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--faint);
}

.cta {
  text-align: center;
}

.cta .section-text {
  margin: 0 auto 38px;
}

.nav-user {
  display: flex;
  align-items: center;
}

.nav-login {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid #2c2c2c;
  padding: 9px 20px;
  transition: all 0.25s ease;
}

.nav-login:hover {
  border-color: #4a4a4a;
  background: rgba(255, 255, 255, 0.05);
}

.nav-profile {
  display: flex;
  align-items: center;
  gap: 11px;
}

.nav-profile-link {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.nav-profile img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
  flex-shrink: 0;
}

.nav-profile span {
  display: inline-block;
  font-size: 13.5px;
  color: var(--text);
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-logout {
  background: none;
  border: none;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.nav-logout:hover {
  color: var(--text);
}

.auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 24px;
}

.auth-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  max-width: 420px;
  width: 100%;
  text-align: center;
  padding: 54px 44px;
}

.auth-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 24px;
}

.auth-title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 12px;
}

.auth-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.auth-form {
  width: 100%;
  text-align: left;
}

.auth-input {
  width: 100%;
  box-sizing: border-box;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 14px;
  font-size: 14.5px;
  font-family: var(--sans);
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s ease;
}

.auth-input::placeholder {
  color: var(--faint);
}

.auth-input:focus {
  border-color: #4a4a4a;
}

.auth-captcha {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  min-height: 65px;
}

.auth-submit {
  width: 100%;
  border: none;
  cursor: pointer;
}

.auth-submit[disabled] {
  opacity: 0.5;
  cursor: wait;
}

.auth-msg {
  font-size: 13.5px;
  line-height: 1.6;
  min-height: 20px;
  margin: 2px 0 12px;
}

.auth-msg-error {
  color: #e08a8a;
}

.auth-msg-ok {
  color: #8fc99f;
}

.auth-code-note {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.auth-code-note strong {
  color: var(--text);
  font-weight: 400;
  word-break: break-all;
}

.auth-code-input {
  text-align: center;
  font-size: 26px;
  letter-spacing: 0.35em;
  padding: 12px 10px;
}

.auth-link {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 0 3px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.auth-link:hover {
  color: var(--text);
}

.auth-switch {
  color: var(--text);
  border-bottom: 1px solid #3a3a3a;
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.auth-switch:hover {
  border-color: var(--text);
}

.auth-note {
  margin-top: 26px;
  color: var(--faint);
  font-size: 13px;
}

.auth-back {
  display: inline-block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.auth-back:hover {
  color: var(--text);
}

.profile-section {
  align-items: flex-start;
  padding-top: 140px;
  padding-bottom: 110px;
}

.profile-card {
  max-width: 680px;
  width: 100%;
  text-align: left;
  padding: 50px 52px;
}

.profile-head {
  display: flex;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 34px;
  margin-bottom: 38px;
}

.profile-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: 132px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
  border: 1px solid var(--border);
}

.profile-avatar-edit {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.profile-avatar-edit:hover {
  color: var(--text);
  border-color: var(--text);
}

.profile-avatar-note {
  font-size: 11.5px;
  color: var(--faint);
  max-width: 132px;
  text-align: center;
  line-height: 1.5;
}

.profile-avatar-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.profile-avatar-actions .btn {
  flex: 1;
  padding: 9px 10px;
  font-size: 12px;
  white-space: nowrap;
  text-align: center;
}

.profile-head-text {
  min-width: 0;
  flex: 1;
}

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

.profile-name {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 0;
  word-break: break-word;
}

.profile-rol {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  margin-bottom: 2px;
  white-space: nowrap;
}

.profile-rol-special {
  color: #d8b36a;
  border-color: #4a4025;
}

.profile-block {
  margin-bottom: 40px;
}

.profile-block:last-child {
  margin-bottom: 0;
}

.profile-block-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 20px;
}

.profile-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.profile-info-item {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-info-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}

.profile-info-value {
  font-weight: 400;
  font-size: 15px;
  color: var(--text);
  word-break: break-all;
}

.profile-cursos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-curso {
  border: 1px solid var(--border);
  padding: 18px 20px;
  background: var(--bg);
}

.profile-curso-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.profile-curso-nombre {
  font-size: 15px;
  color: var(--text);
  word-break: break-word;
}

.profile-curso-badge {
  flex-shrink: 0;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d8b36a;
  border: 1px solid #4a4025;
  padding: 3px 9px;
}

.profile-curso-bar {
  height: 6px;
  background: #191919;
  overflow: hidden;
}

.profile-curso-bar-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.3s ease;
}

.profile-curso-progreso {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  color: var(--faint);
}

.profile-cursos-empty p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 18px;
}

.profile-block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
  margin-top: 8px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.modal-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  max-width: 400px;
  width: 100%;
  padding: 40px 36px;
  box-sizing: border-box;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--faint);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--text);
}

.modal-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 22px;
}

body.modal-open {
  overflow: hidden;
}

.plat-lock {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 24px;
}

.plat-lock-card {
  max-width: 420px;
}

.plat {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.plat-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 6, 6, 0.97);
  border-bottom: 1px solid var(--border);
}

.plat-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.plat-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.plat-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.plat-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.plat-tab {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.plat-tab:hover {
  color: var(--text);
}

.plat-tab.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.plat-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.plat-bell-wrap {
  position: relative;
}

.plat-bell {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.plat-bell:hover {
  color: var(--text);
  border-color: #3a3a3a;
}

.plat-bell svg {
  width: 18px;
  height: 18px;
}

.plat-bell-dot {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8b36a;
}

.plat-bell-panel {
  position: absolute;
  top: 48px;
  right: 0;
  width: 320px;
  max-height: 400px;
  overflow: auto;
  background: #0f0f0f;
  border: 1px solid var(--border);
  padding: 18px;
  z-index: 110;
}

.plat-bell-title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text);
  margin-bottom: 14px;
}

.plat-bell-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plat-bell-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.plat-bell-icon {
  font-size: 17px;
  flex-shrink: 0;
}

.plat-bell-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.plat-bell-item-titulo {
  font-size: 13.5px;
  color: var(--text);
}

.plat-bell-item-detalle {
  font-size: 12.5px;
  color: var(--muted);
  word-break: break-word;
}

.plat-bell-item-fecha {
  font-size: 11.5px;
  color: var(--faint);
}

.plat-bell-vacio {
  font-size: 13px;
  color: var(--faint);
}

.plat-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plat-user img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
  border: 1px solid var(--border);
}

.plat-user-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.plat-user-name {
  font-size: 13.5px;
  color: var(--text);
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plat-user-rol {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}

.plat-user-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.plat-user-link:hover {
  color: var(--text);
}

.plat-logout {
  background: none;
  border: none;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.plat-logout:hover {
  color: var(--text);
}

.plat-main {
  flex: 1;
  padding: 44px 0 90px;
}

.plat-view-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.plat-view-sub {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 26px;
}

.plat-view-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.plat-section-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 16px;
}

.plat-cargando,
.plat-error {
  color: var(--muted);
  font-size: 14.5px;
  padding: 20px 0;
}

.plat-error {
  color: #e08a8a;
}

.plat-vacio {
  border: 1px dashed var(--border);
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
}

.plat-vacio p {
  margin-bottom: 18px;
}

.plat-vacio-mini {
  color: var(--faint);
  font-size: 13px;
}

.plat-cursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.plat-curso-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 24px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.plat-curso-card:hover {
  border-color: #3a3a3a;
  transform: translateY(-2px);
}

.plat-curso-card-nombre {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text);
}

.plat-curso-card-progreso {
  font-size: 12px;
  color: var(--faint);
}

.plat-back {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 0 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
  transition: color 0.2s ease;
}

.plat-back:hover {
  color: var(--text);
}

.plat-curso-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: start;
}

.plat-curso-actualizaciones {
  border-right: 1px solid var(--border);
  padding-right: 30px;
  position: sticky;
  top: 100px;
}

.plat-recientes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plat-reciente {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
}

.plat-reciente div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.plat-reciente-titulo {
  font-size: 13px;
  color: var(--text);
  word-break: break-word;
}

.plat-reciente-fecha {
  font-size: 11.5px;
  color: var(--faint);
}

.plat-curso-centro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.plat-contenido {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.plat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 14px 16px;
}

.plat-item[draggable="true"] {
  cursor: grab;
}

.plat-item[draggable="true"]:active {
  cursor: grabbing;
}

.plat-item-arrastrando {
  opacity: 0.4;
}

.plat-item-destino {
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.08);
}

.plat-rec-ruta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin: 4px 0 14px;
  color: var(--muted);
}

.plat-rec-ruta-link {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 13px;
  padding: 0;
  cursor: pointer;
}

.plat-rec-ruta-item {
  color: var(--text);
}

.plat-rec-ruta-sep {
  color: var(--faint);
}

.plat-rec-zona {
  border: 1.5px dashed var(--border);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  color: var(--faint);
  font-size: 13px;
  margin-bottom: 18px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.plat-rec-zona-activa {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212, 175, 55, 0.06);
}

.plat-rec-orden {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12.5px;
  padding: 8px 10px;
}

.plat-editor-card {
  max-width: 620px;
}

.plat-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  padding: 6px;
}

.plat-editor-toolbar button {
  background: none;
  border: 1px solid transparent;
  color: var(--text);
  font-size: 13px;
  padding: 6px 9px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.plat-editor-toolbar button:hover {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.plat-editor-select {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12.5px;
  padding: 5px 6px;
  max-width: 140px;
}

.plat-editor-colores {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--border);
  padding: 4px 5px;
}

.plat-editor-colores button {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.plat-editor-colores button:hover {
  transform: scale(1.2);
  border-color: var(--accent);
}

.plat-editor-area {
  min-height: 240px;
  max-height: 46vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.65;
  padding: 14px 16px;
  margin-bottom: 14px;
  outline: none;
}

.plat-editor-area:focus {
  border-color: var(--accent);
}

.plat-editor-nota {
  margin: -6px 0 12px;
  font-size: 12.5px;
  color: var(--faint);
  background: rgba(212, 175, 55, 0.06);
  border-left: 3px solid #d4af37;
  padding: 8px 12px;
}

.plat-editor-area.mod-codigo {
  font-family: "Courier New", Courier, monospace;
  font-size: 13.5px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.plat-editor-area h2 {
  font-size: 22px;
  margin: 10px 0 6px;
}

.plat-editor-area ul,
.plat-editor-area ol {
  padding-left: 26px;
  margin: 6px 0;
}

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

.plat-visor-card {
  max-width: 720px;
}

.plat-visor-img {
  display: block;
  max-width: 100%;
  max-height: 62vh;
  margin: 0 auto 14px;
  object-fit: contain;
}

.plat-visor-frame {
  display: block;
  width: 100%;
  height: 62vh;
  border: 1px solid var(--border);
  background: #171717;
  margin-bottom: 14px;
}

.plat-visor-pre {
  max-height: 62vh;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 13px;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 14px 16px;
  margin-bottom: 14px;
}

.plat-item-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.plat-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.plat-item-nombre {
  font-size: 14.5px;
  color: var(--text);
  word-break: break-word;
}

.plat-item-meta {
  font-size: 12px;
  color: var(--faint);
}

.plat-item-btn {
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.plat-item-btn:hover {
  color: var(--text);
  border-color: #3a3a3a;
}

.plat-item-btn-danger:hover {
  color: #e08a8a;
  border-color: #5a3030;
}

.plat-recursos-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.plat-rec-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plat-calf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.plat-calf-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 24px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.plat-calf-card:hover {
  border-color: #3a3a3a;
  transform: translateY(-2px);
}

.plat-calf-card-nombre {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text);
}

.plat-calf-card-anio {
  font-size: 12.5px;
  color: var(--muted);
}

.plat-calf-card-general {
  font-size: 12px;
  color: #d8b36a;
}

.plat-nota-general {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 18px 26px;
  margin: 18px 0 26px;
}

.plat-nota-general-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}

.plat-nota-general-valor {
  font-size: 30px;
  font-weight: 500;
  color: var(--text);
}

.plat-calf-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plat-nota {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 16px 18px;
}

.plat-nota-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.plat-nota-actividad {
  font-size: 14.5px;
  color: var(--text);
  word-break: break-word;
}

.plat-nota-fecha {
  font-size: 12px;
  color: var(--faint);
}

.plat-nota-valor {
  font-size: 20px;
  font-weight: 500;
  flex-shrink: 0;
}

.plat-pcurso-alumnos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plat-alumno-card {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plat-alumno-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.plat-alumno-nombre {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  word-break: break-word;
}

.plat-alumno-nota {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  flex-shrink: 0;
}

.plat-alumno-email {
  font-size: 12px;
  color: var(--faint);
  word-break: break-word;
}

.plat-alumno-progreso {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.plat-alumno-progreso .profile-curso-bar {
  flex: 1;
}

.plat-carrera-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.plat-stat-card {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 22px 20px;
  text-align: left;
}

.plat-stat-valor {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--accent);
  line-height: 1.1;
}

.plat-stat-label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
  margin-top: 6px;
}

.plat-carrera-empty {
  border: 1px dashed var(--border);
  padding: 26px 20px;
  color: var(--faint);
  font-size: 14px;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.pack-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
}

.pack-card.featured {
  border-color: #3a3a3a;
}

.pack-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pack-price {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 600;
}

.pack-includes {
  list-style: none;
  margin-top: 22px;
  flex: 1;
}

.pack-includes li {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14.5px;
}

.featured-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 40px 32px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-card .course-name {
  font-size: 28px;
}

.featured-price {
  margin: 14px 0 4px;
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 600;
}

.featured-sub {
  margin: 0 0 22px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--faint);
}

.catalog-more {
  margin-top: 36px;
  text-align: center;
  font-size: 14px;
}

.catalog-more a {
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12.5px;
  transition: color 0.2s ease;
}

.catalog-more a:hover {
  color: var(--text);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
  }
}

.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.13s; }
.hero-content > *:nth-child(3) { animation-delay: 0.21s; }
.hero-content > *:nth-child(4) { animation-delay: 0.29s; }
.hero-content > *:nth-child(5) { animation-delay: 0.37s; }
.hero-content > *:nth-child(6) { animation-delay: 0.45s; }

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

.feature,
.course-card,
.pack-card,
.featured-card,
.team-card {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature:hover,
.course-card:hover,
.pack-card:hover,
.featured-card:hover,
.team-card:hover {
  transform: translateY(-5px);
  border-color: #333;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: border-color 0.3s ease;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: #cfcfcf;
}

.pack-includes li svg {
  width: 13px;
  height: 13px;
  stroke: var(--muted);
  flex-shrink: 0;
}

.pack-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.level-side {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.info-btn {
  background: none;
  border: none;
  padding: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--faint);
  cursor: pointer;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.info-btn:hover {
  color: var(--text);
}

.info-btn svg {
  width: 16px;
  height: 16px;
}

.pack-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tip {
  position: fixed;
  z-index: 90;
  max-width: min(300px, calc(100vw - 24px));
  width: max-content;
  background: #0f0f0f;
  border: 1px solid #2c2c2c;
  padding: 18px 22px;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tip.open {
  opacity: 1;
  transform: none;
}

.tip-title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text);
  margin-bottom: 12px;
}

.tip ul {
  list-style: none;
}

.tip li {
  color: var(--muted);
  font-size: 13.5px;
  padding: 4px 0 4px 14px;
  position: relative;
}

.tip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--faint);
}

.footer-link-icon a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-link-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--muted);
  flex-shrink: 0;
}

.footer-link-icon a:hover svg {
  fill: var(--text);
}

.catalog-more a svg {
  width: 13px;
  height: 13px;
  stroke: var(--muted);
  vertical-align: middle;
  margin-left: 8px;
}

.catalog-more a:hover svg {
  stroke: var(--text);
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .nav-inner {
    gap: 10px;
  }

  .nav-logo {
    font-size: 16px;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
  }

  .nav-logo img {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }

  .nav-user {
    margin-left: auto;
  }

  .nav-login {
    padding: 8px 14px;
    font-size: 11.5px;
    white-space: nowrap;
  }

  .nav-profile {
    gap: 6px;
  }

  .nav-profile-link span {
    display: none;
  }

  .nav-logout {
    font-size: 11px;
    padding: 2px;
  }

  .nav-toggle {
    display: block;
    padding: 10px 6px;
    flex-shrink: 0;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6, 6, 6, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    visibility: hidden;
  }

  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
    font-size: 13px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-logo {
    width: 132px;
    height: 132px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .page-head {
    padding: 140px 0 54px;
  }

  .page-sub {
    font-size: 15.5px;
  }

  .legal {
    padding: 120px 0 60px;
  }

  .catalog,
  .packs-grid {
    grid-template-columns: 1fr;
  }

  .level-side {
    gap: 9px;
  }

  .course-levels li {
    font-size: 14px;
  }

  .tip {
    font-size: 13px;
  }

  .nav-logo {
    font-size: 17px;
  }

  .nav-profile span {
    max-width: 90px;
  }

  .auth-card {
    padding: 42px 26px;
  }

  .profile-card {
    padding: 36px 24px;
  }

  .profile-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding-bottom: 28px;
    margin-bottom: 34px;
  }

  .profile-info-grid {
    grid-template-columns: 1fr;
  }

  .profile-block-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .plat-topbar-inner {
    gap: 12px;
    padding: 0 14px;
  }

  .plat-brand span {
    display: none;
  }

  .plat-menu {
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .plat-menu::-webkit-scrollbar {
    display: none;
  }

  .plat-tab {
    font-size: 11.5px;
    padding: 9px 8px;
    white-space: nowrap;
  }

  .plat-user-text {
    display: none;
  }

  .plat-user-link {
    display: none;
  }

  .plat-curso-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .plat-curso-actualizaciones {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 24px;
    position: static;
  }

  .plat-bell-panel {
    position: fixed;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .hero {
    padding: 110px 18px 64px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .section-text {
    font-size: 15px;
  }

  .auth {
    padding: 110px 14px 60px;
  }

  .auth-card {
    padding: 36px 22px;
  }

  .profile-card {
    padding: 28px 18px;
  }
}

.hero-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}
.hero-sponsor:hover {
  color: var(--text);
}
.hero-sponsor-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 5px;
  background: #fff;
  padding: 2px;
}
.hero-sponsor-text {
  font-size: 13px;
}

.footer-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-sponsor:hover {
  color: var(--muted);
}
.footer-sponsor-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}
