:root {
  color-scheme: dark;

  --background: #08060f;
  --panel: rgba(20, 14, 34, 0.8);
  --panel-strong: rgba(27, 18, 45, 0.95);

  --border: rgba(255, 255, 255, 0.09);
  --border-purple: rgba(169, 111, 255, 0.38);

  --text: #f7f3ff;
  --muted: #b7aec8;

  --purple: #a96fff;
  --purple-strong: #7138df;
  --purple-soft: rgba(169, 111, 255, 0.13);

  --green: #66d9a7;
  --yellow: #f2c96d;

  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);

  --radius: 26px;
  --radius-small: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;

  background:
    radial-gradient(
      circle at top left,
      rgba(123, 63, 242, 0.16),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #0b0712 0%,
      var(--background) 55%,
      #090710 100%
    );

  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.site-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );

  background-size: 44px 44px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.9),
      transparent 78%
    );
}

.site-orb {
  position: absolute;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  filter: blur(90px);
  opacity: 0.18;
}

.site-orb-one {
  top: -180px;
  right: -120px;
  background: var(--purple);
}

.site-orb-two {
  bottom: -220px;
  left: -180px;
  background: #4d2b9b;
}

.site-container {
  width: min(
    calc(100% - 40px),
    var(--container)
  );

  margin: 0 auto;
}

.narrow-container {
  width: min(
    calc(100% - 40px),
    860px
  );
}

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;
  clip: rect(0, 0, 0, 0);

  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;

  border-bottom: 1px solid transparent;

  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(8, 6, 15, 0.84);
  border-color: var(--border);

  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(18px);
}

.site-header-inner {
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}

.site-brand {
  display: inline-flex;
  align-items: center;

  gap: 12px;
  min-width: max-content;
}

.site-logo-mark,
.site-logo-image {
  width: 42px;
  height: 42px;

  flex: 0 0 auto;
  border-radius: 14px;
}

.site-logo-mark {
  position: relative;

  display: grid;
  place-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.2),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--purple),
      var(--purple-strong)
    );

  box-shadow:
    0 14px 34px rgba(123, 63, 242, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);

  font-weight: 900;
}

.site-logo-mark::after {
  content: "";

  position: absolute;
  inset: 6px;

  border:
    1px solid rgba(255, 255, 255, 0.2);

  border-radius: 10px;
}

.site-logo-mark span {
  position: relative;
  z-index: 1;
}

.site-logo-image {
  object-fit: cover;
  border: 1px solid var(--border);
}

.site-brand-copy {
  display: flex;
  flex-direction: column;

  line-height: 1.1;
}

.site-brand-copy strong {
  font-size: 1rem;
}

.site-brand-copy small {
  margin-top: 5px;

  color: var(--muted);
  font-size: 0.74rem;
}

.site-navigation {
  display: flex;
  align-items: center;

  gap: 4px;
}

.site-nav-link {
  position: relative;

  padding: 10px 12px;

  border-radius: 12px;

  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;

  transition:
    color 160ms ease,
    background 160ms ease;
}

.site-nav-link:hover,
.site-nav-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.site-nav-link.active::after {
  content: "";

  position: absolute;

  left: 12px;
  right: 12px;
  bottom: 4px;

  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--purple),
      #d6b9ff
    );
}

.site-menu-button {
  display: none;

  width: 46px;
  height: 46px;

  border: 1px solid var(--border);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.04);
  color: var(--text);

  cursor: pointer;
}

.site-menu-button > span:not(.sr-only) {
  display: block;

  width: 20px;
  height: 2px;

  margin: 4px auto;

  border-radius: 999px;
  background: currentColor;

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-menu-button[aria-expanded="true"]
  > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-menu-button[aria-expanded="true"]
  > span:nth-child(2) {
  opacity: 0;
}

.site-menu-button[aria-expanded="true"]
  > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-main {
  min-height: calc(100vh - 280px);
}

.home-hero {
  padding: 84px 0 64px;
}

.home-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(380px, 0.95fr);

  align-items: center;
  gap: 70px;
}

.site-eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: #d9c4ff;

  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-eyebrow::before {
  content: "";

  width: 28px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      var(--purple),
      transparent
    );
}

.home-hero h1,
.page-hero h1,
.error-card h1 {
  margin: 20px 0 18px;

  font-size:
    clamp(2.7rem, 7vw, 5.8rem);

  line-height: 0.98;
  letter-spacing: -0.065em;
}

.home-hero h1 span {
  display: block;

  color: transparent;

  background:
    linear-gradient(
      110deg,
      #ffffff 0%,
      #d8c2ff 36%,
      var(--purple) 100%
    );

  background-clip: text;
  -webkit-background-clip: text;
}

.home-hero-copy > p,
.page-hero p,
.section-heading p,
.content-card p,
.cta-card p,
.team-card p,
.error-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.home-hero-copy > p {
  max-width: 640px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;
  margin-top: 30px;
}

.site-button {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
  padding: 0 20px;

  border: 1px solid transparent;
  border-radius: 15px;

  font-weight: 800;

  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

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

.site-button.primary {
  background:
    linear-gradient(
      135deg,
      var(--purple),
      var(--purple-strong)
    );

  box-shadow:
    0 16px 38px rgba(123, 63, 242, 0.28);
}

.site-button.secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.045);
}

.site-button.secondary:hover {
  border-color: var(--border-purple);
  background: var(--purple-soft);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;

  gap: 18px;
  margin-top: 28px;

  color: #c8bfd8;
  font-size: 0.86rem;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;

  gap: 8px;
}

.hero-trust-row span::before {
  content: "";

  width: 6px;
  height: 6px;

  border-radius: 50%;
  background: var(--purple);

  box-shadow:
    0 0 14px rgba(169, 111, 255, 0.8);
}

.hero-visual {
  position: relative;

  min-height: 500px;

  display: grid;
  place-items: center;
}

.core-shell {
  position: relative;

  width: min(380px, 78vw);
  aspect-ratio: 1;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(169, 111, 255, 0.18),
      transparent 58%
    );
}

.core-ring {
  position: absolute;
  inset: 8%;

  border:
    1px solid rgba(190, 151, 255, 0.26);

  border-radius: 50%;

  animation:
    spin 18s linear infinite;
}

.core-ring::before,
.core-ring::after {
  content: "";

  position: absolute;

  width: 12px;
  height: 12px;

  border-radius: 50%;
  background: var(--purple);

  box-shadow:
    0 0 22px rgba(169, 111, 255, 0.85);
}

.core-ring::before {
  top: 7%;
  left: 22%;
}

.core-ring::after {
  right: 10%;
  bottom: 24%;
}

.core-ring-two {
  inset: 19%;

  border-style: dashed;

  animation-duration: 13s;
  animation-direction: reverse;
}

.core-ring-three {
  inset: 31%;
  animation-duration: 9s;
}

.core-center {
  position: relative;
  z-index: 2;

  width: 116px;
  height: 116px;

  display: grid;
  place-items: center;

  border-radius: 34px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.2),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      var(--purple),
      #5e2dcc
    );

  box-shadow:
    0 0 0 14px rgba(169, 111, 255, 0.07),
    0 28px 60px rgba(71, 30, 143, 0.46);

  font-size: 3rem;
  font-weight: 950;
}

.floating-panel {
  position: absolute;

  display: flex;
  align-items: center;

  gap: 12px;
  min-width: 230px;

  padding: 15px 17px;

  border: 1px solid var(--border);
  border-radius: 18px;

  background: rgba(17, 12, 29, 0.84);

  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-panel strong,
.floating-panel small {
  display: block;
}

.floating-panel strong {
  font-size: 0.88rem;
}

.floating-panel small {
  margin-top: 2px;

  color: var(--muted);
  font-size: 0.74rem;
}

.floating-panel-one {
  top: 90px;
  left: -12px;
}

.floating-panel-two {
  right: -8px;
  bottom: 80px;
}

.floating-dot,
.floating-icon {
  width: 34px;
  height: 34px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: var(--purple-soft);
  color: #d8c2ff;
}

.floating-dot::after {
  content: "";

  width: 9px;
  height: 9px;

  border-radius: 50%;
  background: var(--green);

  box-shadow:
    0 0 16px rgba(102, 217, 167, 0.72);
}

.site-section {
  padding: 86px 0;
}

.compact-section {
  padding-top: 24px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.cta-card h2,
.content-card h2,
.team-card h2 {
  margin: 14px 0 10px;

  font-size:
    clamp(1.8rem, 4vw, 3rem);

  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p,
.cta-card p,
.content-card p,
.team-card p {
  margin: 0;
}

.feature-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 16px;
}

.feature-card,
.content-card,
.team-card,
.status-list,
.cta-card {
  border: 1px solid var(--border);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.038),
      transparent
    ),
    var(--panel);

  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.feature-card {
  min-height: 275px;

  display: flex;
  flex-direction: column;

  padding: 24px;
  border-radius: 22px;

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-purple);

  background:
    linear-gradient(
      180deg,
      rgba(169, 111, 255, 0.11),
      transparent
    ),
    var(--panel-strong);
}

.feature-number,
.content-index,
.team-card > span {
  color: #d8c2ff;

  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 34px 0 10px;
  font-size: 1.28rem;
}

.feature-card p {
  margin: 0;

  color: var(--muted);
  font-size: 0.94rem;
}

.feature-link {
  margin-top: auto;
  padding-top: 24px;

  color: #d8c2ff;
  font-size: 0.88rem;
  font-weight: 750;
}

.cta-card {
  min-height: 240px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
  padding: 38px;

  border-radius: var(--radius);

  background:
    radial-gradient(
      circle at right center,
      rgba(169, 111, 255, 0.16),
      transparent 42%
    ),
    var(--panel);
}

.cta-card > div {
  max-width: 760px;
}

.page-hero {
  padding: 92px 0 44px;
}

.page-hero-inner {
  max-width: 860px;

  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.page-hero h1 {
  font-size:
    clamp(2.5rem, 6vw, 4.7rem);
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
}

.page-section {
  padding-top: 32px;
}

.content-card {
  padding: 34px;
  border-radius: var(--radius);
}

.accent-card {
  border-color: var(--border-purple);

  background:
    radial-gradient(
      circle at top right,
      rgba(169, 111, 255, 0.15),
      transparent 42%
    ),
    var(--panel);
}

.placeholder-grid,
.team-grid {
  display: grid;
  gap: 16px;
}

.placeholder-grid {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
}

.team-grid {
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
}

.team-card {
  padding: 28px;
  border-radius: 22px;
}

.team-card h2 {
  font-size: 1.45rem;
}

.status-list {
  overflow: hidden;
  border-radius: var(--radius);
}

.status-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
  padding: 20px 24px;

  border-bottom: 1px solid var(--border);
}

.status-service-row:last-child {
  border-bottom: 0;
}

.status-service-row > div {
  display: flex;
  align-items: center;

  gap: 12px;
}

.status-service-row > span:last-child {
  color: var(--muted);
  text-align: right;
}

.status-indicator {
  width: 10px;
  height: 10px;

  border-radius: 50%;
  background: var(--muted);
}

.status-indicator.ready {
  background: var(--green);

  box-shadow:
    0 0 16px rgba(102, 217, 167, 0.7);
}

.status-indicator.building {
  background: var(--yellow);

  box-shadow:
    0 0 16px rgba(242, 201, 109, 0.5);
}

.status-indicator.neutral {
  background: var(--purple);

  box-shadow:
    0 0 16px rgba(169, 111, 255, 0.56);
}

.error-section {
  min-height: 65vh;

  display: grid;
  align-items: center;
}

.error-card {
  text-align: center;
}

.error-card h1 {
  font-size:
    clamp(2.3rem, 6vw, 4.5rem);
}

.error-card .site-button {
  margin-top: 18px;
}

.site-footer {
  margin-top: 72px;
  padding: 56px 0 24px;

  border-top: 1px solid var(--border);

  background:
    rgba(5, 4, 10, 0.46);
}

.site-footer-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.5fr)
    repeat(2, minmax(150px, 0.5fr));

  gap: 48px;
}

.site-footer-brand {
  margin-bottom: 18px;
}

.site-footer-grid > div:first-child > p {
  max-width: 460px;
  margin: 0;

  color: var(--muted);
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 10px;
}

.site-footer-links strong {
  margin-bottom: 5px;
}

.site-footer-links a {
  color: var(--muted);

  transition:
    color 160ms ease;
}

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

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;

  border-top: 1px solid var(--border);

  color: #8f879e;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);

  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 1050px) {
  .site-menu-button {
    display: block;
  }

  .site-navigation {
    position: fixed;

    top: 82px;
    left: 20px;
    right: 20px;

    display: grid;

    gap: 6px;
    padding: 14px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background:
      rgba(12, 8, 20, 0.97);

    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);

    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;

    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-navigation.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav-link {
    padding: 13px 14px;
  }

  .site-nav-link.active::after {
    display: none;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-hero-copy {
    text-align: center;
  }

  .home-hero-copy > p,
  .section-heading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-trust-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 430px;
  }

  .feature-grid,
  .team-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-container,
  .narrow-container {
    width: min(
      calc(100% - 28px),
      var(--container)
    );
  }

  .site-header-inner {
    min-height: 72px;
  }

  .site-navigation {
    top: 72px;
    left: 14px;
    right: 14px;
  }

  .site-brand-copy small {
    display: none;
  }

  .home-hero {
    padding: 58px 0 34px;
  }

  .home-hero h1,
  .page-hero h1 {
    letter-spacing: -0.05em;
  }

  .home-hero-copy > p,
  .page-hero p,
  .section-heading p,
  .content-card p,
  .cta-card p,
  .team-card p {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-button {
    width: 100%;
  }

  .hero-trust-row {
    gap: 10px 16px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .core-shell {
    width: min(300px, 82vw);
  }

  .core-center {
    width: 92px;
    height: 92px;

    border-radius: 28px;

    font-size: 2.4rem;
  }

  .floating-panel {
    min-width: 0;
    width: min(215px, 64vw);
  }

  .floating-panel-one {
    top: 58px;
    left: 0;
  }

  .floating-panel-two {
    right: 0;
    bottom: 42px;
  }

  .site-section {
    padding: 64px 0;
  }

  .feature-grid,
  .placeholder-grid,
  .team-grid,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 235px;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;

    padding: 28px;
  }

  .page-hero {
    padding: 64px 0 24px;
  }

  .content-card,
  .team-card {
    padding: 26px;
  }

  .status-service-row {
    align-items: flex-start;
    flex-direction: column;

    gap: 8px;
  }

  .status-service-row > span:last-child {
    padding-left: 22px;
    text-align: left;
  }

  .site-footer {
    padding-top: 42px;
  }

  .site-footer-grid {
    gap: 30px;
  }

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

    gap: 6px;
  }
}

.public-account-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: rgba(20, 14, 34, 0.72);
  box-shadow: var(--shadow);
}

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

.public-account-user span,
.public-account-user strong {
  display: block;
}

.public-account-user span {
  color: var(--muted);
  font-size: 0.76rem;
}

.public-account-user strong {
  margin-top: 2px;
}

.public-account-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--border-purple);
  border-radius: 14px;
  object-fit: cover;
}

.public-account-avatar.fallback {
  display: grid;
  place-items: center;
  background: var(--purple-soft);
  color: var(--text);
  font-weight: 900;
}

.site-button.compact {
  padding: 9px 14px;
  font-size: 0.84rem;
}

.public-appeals-summary {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.public-appeals-summary article {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--panel);
}

.public-appeals-summary span,
.public-appeals-summary strong {
  display: block;
}

.public-appeals-summary span {
  color: var(--muted);
  font-size: 0.8rem;
}

.public-appeals-summary strong {
  margin-top: 7px;
  font-size: 1.8rem;
}

.public-appeals-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(290px, 0.65fr);
  gap: 22px;
  align-items: start;
}

.compact-heading {
  margin-bottom: 18px;
}

.public-action-list {
  display: grid;
  gap: 16px;
}

.public-action-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(
      145deg,
      rgba(169, 111, 255, 0.08),
      transparent 45%
    ),
    var(--panel);
  box-shadow: var(--shadow);
}

.public-action-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.public-action-card h2 {
  margin: 10px 0 0;
}

.public-action-number {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
}

.public-status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.public-status-pill.available,
.public-status-pill.accepted {
  color: var(--green);
  background: rgba(102, 217, 167, 0.1);
  border-color: rgba(102, 217, 167, 0.25);
}

.public-status-pill.pending {
  color: var(--yellow);
  background: rgba(242, 201, 109, 0.1);
  border-color: rgba(242, 201, 109, 0.25);
}

.public-status-pill.rejected,
.public-status-pill.cancelled {
  color: #ff9ca8;
  background: rgba(255, 85, 108, 0.1);
  border-color: rgba(255, 85, 108, 0.25);
}

.public-action-information {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.public-action-information p {
  margin: 0;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.84rem;
}

.public-action-information strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.public-action-card-footer {
  margin-top: 18px;
}

.public-action-message {
  color: var(--muted);
  font-size: 0.85rem;
}

.public-appeal-result {
  margin-top: 18px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.public-appeal-result-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.public-appeal-result-heading > span:last-child {
  color: var(--muted);
  font-size: 0.76rem;
}

.public-review-response {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.public-review-response p {
  margin-bottom: 0;
}

.public-history-card {
  position: sticky;
  top: 105px;
}

.public-history-card h2 {
  margin-top: 8px;
}

.public-history-list {
  margin-top: 18px;
}

.public-history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--border);
}

.public-history-row:first-child {
  border-top: 0;
}

.public-history-row strong,
.public-history-row span {
  display: block;
}

.public-history-row > div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
}

.public-empty-inline {
  color: var(--muted);
  font-size: 0.86rem;
}

.public-empty-card {
  text-align: center;
}

.public-appeal-form-card {
  padding: 26px;
}

.public-sanction-summary {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.public-sanction-summary h2 {
  margin-top: 12px;
}

.public-sanction-summary p {
  margin: 8px 0 0;
  color: var(--muted);
}

.public-sanction-summary strong {
  color: var(--text);
}

.public-form-error,
.public-form-notice {
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 14px;
}

.public-form-error {
  border: 1px solid rgba(255, 85, 108, 0.28);
  background: rgba(255, 85, 108, 0.08);
  color: #ffb2bc;
}

.public-form-notice {
  border: 1px solid rgba(242, 201, 109, 0.28);
  background: rgba(242, 201, 109, 0.08);
  color: var(--yellow);
}

.public-appeal-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.public-appeal-form label > span,
.public-appeal-form label > small {
  display: block;
}

.public-appeal-form label > span {
  margin-bottom: 8px;
  font-weight: 750;
}

.public-appeal-form label > small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.74rem;
}

.public-appeal-form textarea,
.public-appeal-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.public-appeal-form textarea {
  min-height: 145px;
  padding: 14px;
  resize: vertical;
}

.public-appeal-form input {
  padding: 13px 14px;
}

.public-appeal-form textarea:focus,
.public-appeal-form input:focus {
  border-color: var(--border-purple);
  box-shadow:
    0 0 0 4px
    rgba(169, 111, 255, 0.08);
}

.public-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.public-success-card {
  text-align: center;
}

@media (max-width: 900px) {
  .public-appeals-layout {
    grid-template-columns: 1fr;
  }

  .public-history-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .public-account-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-appeals-summary {
    grid-template-columns: 1fr;
  }

  .public-action-information {
    grid-template-columns: 1fr;
  }

  .public-action-card-top {
    flex-direction: column;
  }

  .public-appeal-result-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

.public-success-card .site-button {
  margin-top: 18px;
}

.public-success-card .site-button {
  margin-top: 22px;
}
.public-application-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.public-application-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(169, 111, 255, 0.12),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.025);
}

.public-application-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.public-application-open {
  padding: 5px 9px;
  border: 1px solid
    rgba(90, 224, 160, 0.25);
  border-radius: 999px;
  background:
    rgba(90, 224, 160, 0.08);
  color: #8ce5b7;
  font-size: 0.68rem;
  font-weight: 800;
}

.public-application-card h2 {
  margin: 18px 0 8px;
}

.public-application-card > p {
  flex: 1;
  margin: 0 0 20px;
  color: var(--text-soft);
  line-height: 1.65;
}

.public-application-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.public-application-card-stats span {
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.7rem;
}

.public-application-card .site-button {
  width: fit-content;
}

.public-application-sent {
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid
    rgba(90, 224, 160, 0.25);
  border-radius: 12px;
  background:
    rgba(90, 224, 160, 0.08);
  color: #8ce5b7;
  font-size: 0.76rem;
  font-weight: 800;
}

.public-empty-applications {
  max-width: 720px;
  margin: 26px auto 0;
  text-align: center;
}

.public-application-form-header {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(169, 111, 255, 0.15),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.025);
}

.public-application-form-header h1 {
  margin: 10px 0;
}

.public-application-form-header > p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.public-application-back {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 750;
}

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

.public-application-requirements {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid
    rgba(169, 111, 255, 0.18);
  border-radius: 15px;
  background:
    rgba(169, 111, 255, 0.06);
}

.public-application-requirements strong {
  display: block;
  margin-bottom: 6px;
}

.public-application-requirements p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
  white-space: pre-line;
}

.public-application-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.public-application-question {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    rgba(255, 255, 255, 0.025);
}

.public-application-question-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.public-application-question h2 {
  margin: 7px 0 0;
  font-size: 1rem;
}

.public-question-type {
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.public-required,
.public-optional {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
}

.public-required {
  border: 1px solid
    rgba(255, 157, 171, 0.22);
  background:
    rgba(255, 157, 171, 0.07);
  color: #ffb2bd;
}

.public-optional {
  border: 1px solid var(--border);
  color: var(--text-soft);
}

.public-application-question > p {
  margin: 9px 0 15px;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.6;
}

.public-application-question input[type="text"],
.public-application-question input[type="number"],
.public-application-question textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 13px;
  outline: none;
  background:
    rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
}

.public-application-question textarea {
  resize: vertical;
}

.public-application-question input:focus,
.public-application-question textarea:focus {
  border-color: var(--border-purple);
  box-shadow:
    0 0 0 4px
    rgba(169, 111, 255, 0.08);
}

.public-choice-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.public-choice-grid.boolean {
  grid-template-columns:
    repeat(2, minmax(0, 180px));
}

.public-choice-option {
  position: relative;
  cursor: pointer;
}

.public-choice-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.public-choice-option span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  transition:
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease;
}

.public-choice-option input:checked + span {
  border-color:
    rgba(169, 111, 255, 0.52);
  background:
    rgba(169, 111, 255, 0.12);
  color: var(--text);
}

.public-choice-option:hover span {
  border-color:
    rgba(169, 111, 255, 0.3);
}

.public-application-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  border: 1px solid
    rgba(169, 111, 255, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(169, 111, 255, 0.09),
      rgba(255, 255, 255, 0.02)
    );
}

.public-application-submit h2 {
  margin: 0 0 5px;
}

.public-application-submit p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.public-application-message {
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 13px;
  font-size: 0.78rem;
}

.public-application-message.error {
  border: 1px solid
    rgba(255, 117, 138, 0.26);
  background:
    rgba(255, 117, 138, 0.08);
  color: #ffb0bc;
}

.public-application-message.success {
  border: 1px solid
    rgba(90, 224, 160, 0.26);
  background:
    rgba(90, 224, 160, 0.08);
  color: #8ce5b7;
}

@media (max-width: 820px) {
  .public-application-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .public-choice-grid,
  .public-choice-grid.boolean {
    grid-template-columns: 1fr;
  }

  .public-application-question-heading,
  .public-application-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .public-application-submit .site-button {
    width: 100%;
  }
}

/* Postulaciones: evitar que la cabecera tape el formulario */
body.public-applications-page > header,
body.public-applications-page header.site-header,
body.public-applications-page .site-header {
  position: relative !important;
  top: auto !important;
}

/* Barra de cuenta sin textos pegados */
.public-account-bar > div:not(.public-account-user) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.public-account-bar > div:not(.public-account-user) strong {
  display: block;
  line-height: 1.4;
}

.public-account-bar .site-eyebrow {
  margin: 0;
}

/* Más separación al comenzar el formulario */
.public-application-form-header {
  scroll-margin-top: 24px;
}

.public-application-question {
  scroll-margin-top: 24px;
}

/* Requisitos con saltos de línea correctos */
.public-application-requirements p {
  white-space: pre-line;
}

/* Ajuste móvil de la cuenta */
@media (max-width: 680px) {
  .public-account-bar {
    gap: 16px;
  }

  .public-account-bar .site-button {
    width: 100%;
  }
}

.public-application-question input[type="text"],
.public-application-question input[type="number"],
.public-application-question textarea,
.public-application-question .public-choice-grid {
  margin-top: 16px;
}

.public-application-question input[type="text"],
.public-application-question input[type="number"],
.public-application-question textarea,
.public-application-question .public-choice-grid {
  margin-top: 18px;
}


/* zenitcore-technical-ui-v1 */
:root {
  --zc-bg: #0b0c0f;
  --zc-panel: #111318;
  --zc-panel-2: #171a20;
  --zc-line: #282c35;
  --zc-line-soft: #1d2027;
  --zc-text: #f4f5f7;
  --zc-muted: #8e949f;
  --zc-accent: #8f6cf1;
  --zc-accent-soft: #2a2144;
  --zc-green: #7ee2a8;
  --zc-amber: #f3bf64;
  --zc-blue: #75a7ff;
  --zc-max: 1240px;
}

body.zc-shell {
  margin: 0;
  background: var(--zc-bg);
  color: var(--zc-text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

.zc-shell * {
  box-sizing: border-box;
}

.zc-shell a {
  color: inherit;
  text-decoration: none;
}

.zc-shell .site-container {
  width: min(
    calc(100% - 40px),
    var(--zc-max)
  );
  margin: 0 auto;
}

.zc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(11, 12, 15, 0.9);
  backdrop-filter: blur(14px);
}

.zc-header.scrolled {
  border-bottom-color: var(--zc-line);
}

.zc-header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.zc-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.zc-brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--zc-line);
  border-radius: 9px;
  background: var(--zc-panel-2);
}

.zc-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zc-brand-glyph {
  color: var(--zc-accent);
  font-weight: 900;
}

.zc-brand-copy {
  display: grid;
  line-height: 1.05;
}

.zc-brand-copy strong {
  font-size: 0.92rem;
}

.zc-brand-copy small {
  margin-top: 4px;
  color: var(--zc-muted);
  font-family: monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.zc-navigation {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.zc-nav-link {
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--zc-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.zc-nav-link:hover,
.zc-nav-link.active {
  background: var(--zc-panel);
  color: var(--zc-text);
}

.zc-nav-link.active {
  box-shadow: inset 0 -2px 0 var(--zc-accent);
}

.zc-header-account {
  display: flex;
  justify-content: flex-end;
}

.zc-account-login,
.zc-account {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid var(--zc-line);
  border-radius: 9px;
  background: var(--zc-panel);
  font-size: 0.76rem;
  font-weight: 800;
}

.zc-account-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--zc-green);
  box-shadow: 0 0 10px rgba(126, 226, 168, 0.45);
}

.zc-account img,
.zc-account-fallback {
  width: 27px;
  height: 27px;
  border-radius: 7px;
}

.zc-account img {
  object-fit: cover;
}

.zc-account-fallback {
  display: grid;
  place-items: center;
  background: var(--zc-accent-soft);
}

.zc-account > span:last-child {
  display: grid;
  line-height: 1.05;
}

.zc-account small {
  margin-top: 4px;
  color: var(--zc-muted);
  font-size: 0.62rem;
}

.zc-menu-button {
  display: none;
}

.zc-main {
  min-height: 70vh;
}

.zc-hero {
  padding: 94px 0 82px;
  border-bottom: 1px solid var(--zc-line);
}

.zc-hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(390px, 0.92fr);
  gap: 74px;
  align-items: center;
}

.zc-overline,
.zc-page-intro > .site-container > span,
.zc-section-head > span,
.zc-server-section-grid > div > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--zc-muted);
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zc-overline > span {
  width: 28px;
  height: 1px;
  background: var(--zc-accent);
}

.zc-hero h1 {
  max-width: 760px;
  margin: 20px 0 24px;
  font-size: clamp(3.3rem, 7vw, 6.7rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.zc-hero h1 em {
  color: var(--zc-accent);
  font-style: normal;
}

.zc-hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--zc-muted);
  font-size: 1.08rem;
}

.zc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.zc-button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--zc-line);
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 800;
}

.zc-button.primary {
  border-color: var(--zc-accent);
  background: var(--zc-accent);
  color: white;
}

.zc-button.ghost {
  background: var(--zc-panel);
}

.zc-live-console {
  overflow: hidden;
  border: 1px solid var(--zc-line);
  border-radius: 13px;
  background: #0e1014;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.zc-console-head,
.zc-console-foot {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid var(--zc-line);
  color: var(--zc-muted);
  font-family: monospace;
  font-size: 0.7rem;
}

.zc-console-head b {
  color: var(--zc-green);
  font-weight: 700;
}

.zc-console-event {
  display: grid;
  grid-template-columns: 74px 48px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 59px;
  padding: 0 15px;
  border-bottom: 1px solid var(--zc-line-soft);
  font-family: monospace;
}

.zc-console-event time {
  color: #5f6671;
  font-size: 0.68rem;
}

.zc-console-event p {
  margin: 0;
  color: #d8dbe0;
  font-size: 0.76rem;
}

.event-type {
  padding: 3px 5px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 900;
  text-align: center;
}

.event-type.mod {
  color: var(--zc-amber);
}

.event-type.log {
  color: var(--zc-blue);
}

.event-type.xp {
  color: var(--zc-green);
}

.event-type.web {
  color: var(--zc-accent);
}

.zc-console-foot {
  border-bottom: 0;
  background: #0b0d10;
}

.zc-manifesto {
  background: #101216;
}

.zc-manifesto-grid {
  display: grid;
  grid-template-columns: 120px 1.2fr 0.8fr;
  gap: 44px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.zc-manifesto-grid > span {
  color: var(--zc-muted);
  font-family: monospace;
  font-size: 0.7rem;
}

.zc-manifesto h2,
.zc-section-head h2,
.zc-server-section h2,
.zc-page-intro h1 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.zc-manifesto h2 {
  font-size: clamp(2rem, 4.1vw, 4rem);
}

.zc-manifesto p,
.zc-server-section p,
.zc-page-intro p {
  margin: 0;
  color: var(--zc-muted);
}

.zc-home-modules,
.zc-server-section,
.zc-module-directory,
.zc-server-directory,
.zc-profile {
  padding: 78px 0;
}

.zc-section-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 44px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--zc-line);
}

.zc-section-head > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.zc-section-head h2 {
  max-width: 700px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.zc-section-head a,
.zc-text-link {
  color: var(--zc-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.zc-section-head a:hover,
.zc-text-link:hover {
  color: var(--zc-text);
}

.zc-home-module-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.zc-home-module-list article {
  min-height: 260px;
  padding: 22px;
  border-right: 1px solid var(--zc-line);
}

.zc-home-module-list article:first-child {
  padding-left: 0;
}

.zc-home-module-list article:last-child {
  border-right: 0;
}

.zc-home-module-list article > span,
.zc-module-index,
.zc-community-links a > span,
.zc-profile-actions a > span {
  color: var(--zc-accent);
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 900;
}

.zc-home-module-list h3 {
  margin: 58px 0 9px;
  font-size: 1.16rem;
}

.zc-home-module-list p {
  margin: 0;
  color: var(--zc-muted);
}

.zc-server-section {
  border-top: 1px solid var(--zc-line);
  background: #0e1014;
}

.zc-server-section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 88px;
  align-items: center;
}

.zc-server-section h2 {
  margin: 12px 0 15px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.zc-server-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid var(--zc-line);
  border-bottom: 1px solid var(--zc-line);
}

.zc-server-icon,
.zc-community-icon {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--zc-panel-2);
  color: var(--zc-text);
  font-weight: 900;
}

.zc-server-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
}

.zc-server-icon img,
.zc-community-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zc-server-copy {
  display: grid;
}

.zc-server-copy small {
  margin-top: 3px;
  color: var(--zc-muted);
  font-size: 0.7rem;
}

.zc-server-open {
  color: var(--zc-muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.zc-server-section .zc-text-link {
  display: inline-flex;
  margin-top: 16px;
}

.zc-page-intro {
  padding: 86px 0 55px;
  border-bottom: 1px solid var(--zc-line);
}

.zc-page-intro h1 {
  max-width: 870px;
  margin-top: 18px;
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.zc-page-intro p {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1rem;
}

.zc-module-row {
  display: grid;
  grid-template-columns: 70px 0.75fr 1fr 32px;
  gap: 28px;
  align-items: center;
  min-height: 125px;
  border-top: 1px solid var(--zc-line);
}

.zc-module-row:last-child {
  border-bottom: 1px solid var(--zc-line);
}

.zc-module-name small {
  color: var(--zc-muted);
  font-family: monospace;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.zc-module-name h2 {
  margin: 5px 0 0;
  font-size: 1.3rem;
}

.zc-module-row > p {
  margin: 0;
  color: var(--zc-muted);
}

.zc-module-arrow {
  color: var(--zc-muted);
}

.zc-server-directory .zc-server-item {
  min-height: 88px;
}

.zc-server-empty {
  padding: 28px 0;
  border-top: 1px solid var(--zc-line);
  border-bottom: 1px solid var(--zc-line);
  color: var(--zc-muted);
}

.zc-community-head {
  padding: 72px 0 38px;
  border-bottom: 1px solid var(--zc-line);
}

.zc-community-head-grid {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.zc-community-identity {
  display: flex;
  align-items: center;
  gap: 19px;
}

.zc-community-icon {
  width: 74px;
  height: 74px;
  border-radius: 15px;
}

.zc-community-identity p {
  margin: 0 0 5px;
  color: var(--zc-muted);
  font-family: monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.zc-community-identity h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  letter-spacing: -0.055em;
}

.zc-community-links {
  padding: 50px 0 90px;
}

.zc-community-links a {
  display: grid;
  grid-template-columns: 64px 0.7fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  border-top: 1px solid var(--zc-line);
}

.zc-community-links a:last-child {
  border-bottom: 1px solid var(--zc-line);
}

.zc-community-links small {
  color: var(--zc-muted);
}

.zc-profile-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 70px;
}

.zc-profile-identity {
  padding-top: 18px;
  border-top: 2px solid var(--zc-text);
}

.zc-profile-identity img,
.zc-profile-identity > span {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--zc-panel-2);
  font-size: 1.8rem;
}

.zc-profile-identity small {
  display: block;
  margin-top: 22px;
  color: var(--zc-muted);
  font-family: monospace;
  text-transform: uppercase;
}

.zc-profile-identity h1 {
  margin: 5px 0;
  font-size: 2.25rem;
  letter-spacing: -0.04em;
}

.zc-profile-identity p {
  margin: 0;
  color: var(--zc-muted);
  font-family: monospace;
  font-size: 0.72rem;
}

.zc-profile-actions a {
  display: grid;
  grid-template-columns: 55px 1fr 30px;
  gap: 20px;
  align-items: center;
  min-height: 92px;
  border-top: 1px solid var(--zc-line);
}

.zc-profile-actions a:last-child {
  border-bottom: 1px solid var(--zc-line);
}

.zc-profile-actions div {
  display: grid;
}

.zc-profile-actions small {
  margin-top: 4px;
  color: var(--zc-muted);
}

.zc-footer {
  padding: 48px 0 20px;
  border-top: 1px solid var(--zc-line);
  background: #08090b;
}

.zc-footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 70px;
}

.zc-footer-main > div:first-child > p {
  max-width: 420px;
  margin: 22px 0 0;
  color: var(--zc-muted);
}

.zc-footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 120px;
}

.zc-footer-links strong {
  margin-bottom: 6px;
  color: var(--zc-text);
  font-size: 0.76rem;
}

.zc-footer-links a {
  color: var(--zc-muted);
  font-size: 0.74rem;
}

.zc-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 16px;
  border-top: 1px solid var(--zc-line-soft);
  color: #5f6570;
  font-family: monospace;
  font-size: 0.66rem;
}

@media (max-width: 940px) {
  .zc-header-inner {
    grid-template-columns: auto auto;
  }

  .zc-menu-button {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    gap: 9px;
    border: 0;
    background: transparent;
    color: var(--zc-text);
    font-weight: 800;
  }

  .zc-menu-button i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--zc-accent);
  }

  .zc-navigation {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 16px;
  }

  .zc-navigation.open {
    display: flex;
  }

  .zc-header-account {
    display: none;
  }

  .zc-hero-grid,
  .zc-server-section-grid,
  .zc-profile-grid {
    grid-template-columns: 1fr;
  }

  .zc-manifesto-grid {
    grid-template-columns: 90px 1fr;
  }

  .zc-manifesto p {
    grid-column: 2;
  }

  .zc-home-module-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .zc-module-row {
    grid-template-columns: 55px 0.8fr 1fr;
  }

  .zc-module-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .zc-shell .site-container {
    width: min(
      calc(100% - 28px),
      var(--zc-max)
    );
  }

  .zc-hero {
    padding: 62px 0 56px;
  }

  .zc-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .zc-live-console {
    border-radius: 10px;
  }

  .zc-console-event {
    grid-template-columns: 48px 42px 1fr;
    gap: 8px;
    padding-inline: 10px;
  }

  .zc-console-event time {
    font-size: 0.58rem;
  }

  .zc-manifesto-grid,
  .zc-section-head {
    grid-template-columns: 1fr;
  }

  .zc-manifesto p {
    grid-column: 1;
  }

  .zc-section-head > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .zc-home-module-list {
    grid-template-columns: 1fr;
  }

  .zc-home-module-list article,
  .zc-home-module-list article:first-child {
    min-height: auto;
    padding: 23px 0;
    border-right: 0;
    border-bottom: 1px solid var(--zc-line);
  }

  .zc-home-module-list h3 {
    margin-top: 27px;
  }

  .zc-server-item {
    grid-template-columns: 48px 1fr;
  }

  .zc-server-open {
    grid-column: 2;
  }

  .zc-module-row {
    grid-template-columns: 44px 1fr;
    padding: 22px 0;
  }

  .zc-module-row > p {
    grid-column: 2;
  }

  .zc-community-head-grid,
  .zc-footer-main,
  .zc-footer-bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .zc-community-links a {
    grid-template-columns: 42px 1fr;
  }

  .zc-community-links small {
    grid-column: 2;
  }

  .zc-footer-main {
    gap: 32px;
  }
}


/* zenitcore-product-phase-two */
.zc-account-menu {
  position: relative;
}

.zc-account {
  border: 1px solid var(--zc-line);
  background: var(--zc-panel);
  color: var(--zc-text);
  cursor: pointer;
}

.zc-account > b {
  color: var(--zc-muted);
  font-size: 0.74rem;
}

.zc-account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 120;
  width: 190px;
  display: none;
  padding: 8px;
  border: 1px solid var(--zc-line);
  border-radius: 11px;
  background: #111318;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.zc-account-menu.open .zc-account-dropdown {
  display: grid;
}

.zc-account-dropdown a {
  padding: 10px 11px;
  border-radius: 7px;
  color: var(--zc-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.zc-account-dropdown a:hover {
  background: var(--zc-panel-2);
  color: var(--zc-text);
}

.zc-account-dropdown a.danger {
  color: #ff8e98;
}

.zc-account-dropdown > span {
  height: 1px;
  margin: 5px 0;
  background: var(--zc-line);
}

.zc-hero-v2 {
  padding: 86px 0 0;
}

.zc-hero-v2-copy {
  max-width: 930px;
}

.zc-hero-v2 h1 {
  margin: 18px 0 22px;
  font-size: clamp(3.4rem, 7.4vw, 7.1rem);
  letter-spacing: -0.078em;
  line-height: 0.9;
}

.zc-hero-v2 h1 em {
  color: var(--zc-accent);
  font-style: normal;
}

.zc-hero-v2-copy > p {
  max-width: 720px;
  margin: 0;
  color: var(--zc-muted);
  font-size: 1.08rem;
}

.zc-product-board {
  position: relative;
  margin-top: 66px;
  padding: 18px;
  border: 1px solid var(--zc-line);
  border-bottom: 0;
  border-radius: 17px 17px 0 0;
  background: #0e1014;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.33);
}

.zc-board-top,
.zc-board-card-head,
.zc-board-health,
.zc-status-summary {
  display: flex;
  align-items: center;
}

.zc-board-top {
  justify-content: space-between;
  min-height: 48px;
  padding: 0 6px 14px;
}

.zc-board-top > div:first-child {
  display: grid;
}

.zc-board-top span,
.zc-board-card-head small,
.zc-board-stat small,
.zc-board-score small,
.zc-board-alert small {
  color: var(--zc-muted);
  font-family: monospace;
  font-size: 0.67rem;
  text-transform: uppercase;
}

.zc-board-top strong {
  margin-top: 2px;
  font-size: 0.88rem;
}

.zc-board-health {
  gap: 8px;
  color: var(--zc-green);
  font-size: 0.7rem;
  font-weight: 800;
}

.zc-board-health i,
.zc-status-summary > i,
.zc-status-list i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.zc-board-health i,
.zc-status-summary > i.ready,
.zc-status-list i.ready {
  background: var(--zc-green);
  box-shadow: 0 0 12px rgba(126, 226, 168, 0.45);
}

.zc-board-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.55fr 0.55fr;
  gap: 12px;
}

.zc-board-grid > article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--zc-line-soft);
  border-radius: 11px;
  background: #12151a;
}

.zc-board-chart {
  grid-row: span 2;
}

.zc-board-feed {
  grid-column: span 2;
}

.zc-board-card-head {
  justify-content: space-between;
}

.zc-board-card-head > div {
  display: grid;
}

.zc-board-card-head strong {
  margin-top: 4px;
  font-size: 1rem;
}

.zc-board-card-head > span {
  color: var(--zc-green);
  font-size: 0.7rem;
  font-weight: 800;
}

.zc-chart-bars {
  height: 176px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 25px;
  border-bottom: 1px solid var(--zc-line);
}

.zc-chart-bars i {
  width: 100%;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background:
    linear-gradient(
      180deg,
      var(--zc-accent),
      rgba(143, 108, 241, 0.2)
    );
  opacity: 0.84;
}

.zc-chart-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #555b66;
  font-family: monospace;
  font-size: 0.6rem;
}

.zc-board-score {
  text-align: center;
}

.zc-score-ring {
  width: 112px;
  height: 112px;
  display: grid;
  place-content: center;
  margin: 18px auto 12px;
  border: 8px solid #27233a;
  border-top-color: var(--zc-accent);
  border-right-color: var(--zc-accent);
  border-radius: 50%;
}

.zc-score-ring strong {
  font-size: 1.8rem;
  line-height: 1;
}

.zc-score-ring span {
  color: var(--zc-muted);
  font-size: 0.65rem;
}

.zc-board-score p,
.zc-board-stat span,
.zc-board-alert span {
  margin: 0;
  color: var(--zc-muted);
  font-size: 0.72rem;
}

.zc-board-stat strong,
.zc-board-alert strong {
  display: block;
  margin: 16px 0 5px;
  font-size: 2rem;
}

.zc-board-feed ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.zc-board-feed li {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 10px;
  color: #dfe2e7;
  font-size: 0.72rem;
}

.zc-board-feed li i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.zc-board-feed li i.purple {
  background: var(--zc-accent);
}

.zc-board-feed li i.green {
  background: var(--zc-green);
}

.zc-board-feed li i.amber {
  background: var(--zc-amber);
}

.zc-board-feed time {
  color: #5e6570;
  font-family: monospace;
  font-size: 0.62rem;
}

.zc-flow-section,
.zc-module-showcase,
.zc-creator-home,
.zc-home-final,
.zc-add-flow,
.zc-status-section,
.zc-creator-profile {
  padding: 78px 0;
}

.zc-flow-section {
  border-top: 1px solid var(--zc-line);
  background: #0f1115;
}

.zc-section-heading-v2 {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 34px;
  margin-bottom: 32px;
}

.zc-section-heading-v2 > span,
.zc-home-final span,
.zc-creator-story > span {
  color: var(--zc-muted);
  font-family: monospace;
  font-size: 0.69rem;
  text-transform: uppercase;
}

.zc-section-heading-v2 > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.zc-section-heading-v2 h2,
.zc-home-final h2,
.zc-creator-story h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.zc-section-heading-v2 a {
  color: var(--zc-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.zc-flow-track {
  display: grid;
  grid-template-columns:
    1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.zc-flow-track article {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-top: 1px solid var(--zc-line);
  border-bottom: 1px solid var(--zc-line);
}

.zc-flow-track article span {
  color: var(--zc-accent);
  font-family: monospace;
  font-size: 0.65rem;
}

.zc-flow-track article strong {
  font-size: 0.82rem;
}

.zc-flow-track > i {
  color: #4e5460;
  font-style: normal;
}

.zc-module-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 12px;
}

.zc-module-mosaic article {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--zc-line);
  border-radius: 12px;
  background: #111318;
}

.zc-module-mosaic article.wide {
  grid-column: span 8;
}

.zc-module-mosaic article.tall {
  grid-row: span 2;
}

.zc-module-mosaic article > span {
  color: var(--zc-accent);
  font-family: monospace;
  font-size: 0.7rem;
}

.zc-module-mosaic h3,
.zc-module-mosaic h2 {
  margin: 42px 0 8px;
  font-size: 1.35rem;
}

.zc-module-mosaic p {
  max-width: 440px;
  margin: 0;
  color: var(--zc-muted);
}

.zc-mini-chart {
  height: 120px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 36px;
}

.zc-mini-chart i {
  width: 100%;
  height: var(--h);
  border-radius: 5px 5px 0 0;
  background: rgba(143, 108, 241, 0.5);
}

.zc-case-preview {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(240px, 46%);
  display: grid;
  gap: 5px;
  padding: 15px;
  border: 1px solid var(--zc-line);
  border-radius: 9px;
  background: #0d0f13;
}

.zc-case-preview small {
  color: var(--zc-muted);
  font-family: monospace;
}

.zc-case-preview strong {
  color: var(--zc-amber);
  font-size: 0.78rem;
}

.zc-creator-home {
  padding-top: 0;
}

.zc-creator-strip {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 21px 0;
  border-top: 1px solid var(--zc-line);
  border-bottom: 1px solid var(--zc-line);
}

.zc-creator-avatar-wrap {
  position: relative;
  width: 54px;
  height: 54px;
}

.zc-creator-avatar-wrap.large {
  width: 94px;
  height: 94px;
}

.zc-creator-avatar {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 13px;
  object-fit: cover;
  background: var(--zc-panel-2);
}

.zc-creator-avatar-wrap.large .zc-creator-avatar {
  border-radius: 19px;
}

.zc-creator-avatar.fallback {
  font-size: 1.4rem;
  font-weight: 900;
}

.zc-presence-dot {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--zc-bg);
  border-radius: 50%;
}

.status-online {
  background: #43b581;
}

.status-idle {
  background: #faa61a;
}

.status-dnd {
  background: #f04747;
}

.status-offline {
  background: #747f8d;
}

.zc-creator-strip-copy,
.zc-creator-strip-status {
  display: grid;
}

.zc-creator-strip-copy small {
  color: var(--zc-muted);
  font-size: 0.68rem;
}

.zc-creator-strip-copy strong {
  margin-top: 2px;
}

.zc-creator-strip-copy span,
.zc-creator-strip-status span {
  color: var(--zc-muted);
  font-size: 0.7rem;
}

.zc-creator-strip-status strong {
  font-size: 0.78rem;
}

.zc-creator-strip > a {
  font-size: 0.76rem;
  font-weight: 800;
}

.zc-home-final {
  border-top: 1px solid var(--zc-line);
  background: #0f1115;
}

.zc-home-final-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
}

.zc-home-final h2 {
  margin-top: 12px;
}

.zc-home-final p {
  margin: 0 0 24px;
  color: var(--zc-muted);
}

.zc-add-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 70px;
}

.zc-add-grid ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zc-add-grid li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--zc-line);
}

.zc-add-grid li:last-child {
  border-bottom: 1px solid var(--zc-line);
}

.zc-add-grid li > span {
  color: var(--zc-accent);
  font-family: monospace;
  font-size: 0.7rem;
}

.zc-add-grid li strong {
  display: block;
}

.zc-add-grid li p {
  margin: 6px 0 0;
  color: var(--zc-muted);
}

.zc-add-grid aside {
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--zc-line);
  border-radius: 12px;
  background: var(--zc-panel);
}

.zc-add-grid aside > span {
  color: var(--zc-muted);
  font-family: monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.zc-add-grid aside h2 {
  margin: 0;
}

.zc-add-grid aside small {
  color: var(--zc-muted);
}

.zc-public-warning {
  padding: 12px;
  border: 1px solid rgba(243, 191, 100, 0.35);
  border-radius: 8px;
  color: var(--zc-amber);
  font-size: 0.75rem;
}

.zc-status-summary {
  gap: 13px;
  padding: 19px;
  border: 1px solid var(--zc-line);
  border-radius: 11px;
  background: var(--zc-panel);
}

.zc-status-summary > i {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
}

.zc-status-summary > i.warning,
.zc-status-list i.warning {
  background: var(--zc-amber);
}

.zc-status-summary > div {
  display: grid;
}

.zc-status-summary span {
  margin-top: 3px;
  color: var(--zc-muted);
  font-size: 0.7rem;
}

.zc-status-list {
  margin-top: 16px;
}

.zc-status-list article {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--zc-line);
}

.zc-status-list article:last-child {
  border-bottom: 1px solid var(--zc-line);
}

.zc-status-list article > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zc-status-list span {
  color: var(--zc-muted);
  font-family: monospace;
  font-size: 0.68rem;
}

.zc-creator-profile-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 80px;
  align-items: start;
}

.zc-creator-card {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--zc-line);
  border-radius: 14px;
  background: var(--zc-panel);
}

.zc-creator-card-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.zc-creator-card-top small {
  color: var(--zc-muted);
  font-family: monospace;
  text-transform: uppercase;
}

.zc-creator-card-top h1 {
  margin: 4px 0 0;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.zc-creator-card-top p {
  margin: 0;
  color: var(--zc-muted);
}

.zc-creator-live {
  padding: 15px;
  border: 1px solid var(--zc-line);
  border-radius: 9px;
  background: #0d0f13;
}

.zc-creator-live span {
  color: var(--zc-green);
  font-size: 0.75rem;
  font-weight: 800;
}

.zc-creator-live p {
  margin: 6px 0 0;
  color: var(--zc-muted);
  font-size: 0.78rem;
}

.zc-spotify-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 13px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(30, 215, 96, 0.24);
  border-radius: 9px;
  background: rgba(30, 215, 96, 0.06);
}

.zc-spotify-card.hidden {
  display: none;
}

.zc-spotify-cover {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
  background: #191c21;
}

.zc-spotify-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zc-spotify-card > div:last-child {
  display: grid;
  min-width: 0;
}

.zc-spotify-card small {
  color: #1ed760;
  font-size: 0.65rem;
}

.zc-spotify-card strong,
.zc-spotify-card span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zc-spotify-card span {
  color: var(--zc-muted);
  font-size: 0.7rem;
}

.zc-creator-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.zc-creator-actions button {
  color: var(--zc-text);
  cursor: pointer;
}

.zc-creator-story {
  padding-top: 12px;
}

.zc-creator-story h2 {
  margin-top: 18px;
}

.zc-creator-story > p {
  max-width: 760px;
  color: var(--zc-muted);
  font-size: 1rem;
}

.zc-creator-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--zc-line);
}

.zc-creator-facts article {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border-right: 1px solid var(--zc-line);
}

.zc-creator-facts article:first-child {
  padding-left: 0;
}

.zc-creator-facts article:last-child {
  border-right: 0;
}

.zc-creator-facts strong {
  font-size: 1.2rem;
}

.zc-creator-facts span {
  margin-top: 5px;
  color: var(--zc-muted);
  font-size: 0.72rem;
}

.zc-profile-logout {
  display: inline-flex;
  margin-top: 22px;
  color: #ff8e98;
  font-size: 0.76rem;
  font-weight: 800;
}

.zc-footer-signature {
  display: inline-flex;
  margin-top: 18px;
  color: var(--zc-accent);
  font-size: 0.74rem;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .zc-board-grid {
    grid-template-columns: 1fr 1fr;
  }

  .zc-board-chart,
  .zc-board-feed {
    grid-column: span 2;
  }

  .zc-board-chart {
    grid-row: auto;
  }

  .zc-flow-track {
    grid-template-columns: 1fr;
  }

  .zc-flow-track > i {
    transform: rotate(90deg);
    justify-self: center;
  }

  .zc-module-mosaic article,
  .zc-module-mosaic article.wide {
    grid-column: span 6;
  }

  .zc-add-grid,
  .zc-creator-profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .zc-hero-v2 {
    padding-top: 58px;
  }

  .zc-hero-v2 h1 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .zc-product-board {
    margin-inline: -8px;
    padding: 10px;
    border-radius: 11px 11px 0 0;
  }

  .zc-board-grid {
    grid-template-columns: 1fr;
  }

  .zc-board-chart,
  .zc-board-feed {
    grid-column: span 1;
  }

  .zc-section-heading-v2 {
    grid-template-columns: 1fr;
  }

  .zc-section-heading-v2 > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .zc-module-mosaic article,
  .zc-module-mosaic article.wide {
    grid-column: span 12;
    grid-row: auto;
  }

  .zc-case-preview {
    position: static;
    width: 100%;
    margin-top: 26px;
  }

  .zc-creator-strip {
    grid-template-columns: auto 1fr;
  }

  .zc-creator-strip-status,
  .zc-creator-strip > a {
    grid-column: 2;
  }

  .zc-home-final-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .zc-creator-actions,
  .zc-creator-facts {
    grid-template-columns: 1fr;
  }

  .zc-creator-facts article {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--zc-line);
  }
}



/* zenitcore-legal-pages */
.legal-hero {
  padding: 82px 0 58px;
  border-bottom: 1px solid var(--zc-line);
}

.legal-hero span,
.legal-hero small {
  color: var(--zc-muted);
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 18px 0 16px;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.legal-hero p {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--zc-muted);
  font-size: 1rem;
}

.legal-content {
  padding: 58px 0 92px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 66px;
  align-items: start;
}

.legal-navigation {
  position: sticky;
  top: 96px;
  display: grid;
  border-top: 1px solid var(--zc-line);
}

.legal-navigation a {
  padding: 13px 0;
  border-bottom: 1px solid var(--zc-line);
  color: var(--zc-muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.legal-navigation a.active,
.legal-navigation a:hover {
  color: var(--zc-text);
}

.legal-document {
  min-width: 0;
}

.legal-document > section {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid var(--zc-line);
}

.legal-document > section:last-child {
  border-bottom: 1px solid var(--zc-line);
}

.legal-document > section > span {
  color: var(--zc-accent);
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 900;
}

.legal-document h2 {
  margin: 0 0 13px;
  font-size: 1.26rem;
  letter-spacing: -0.025em;
}

.legal-document p {
  margin: 0 0 13px;
  color: var(--zc-muted);
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-document ul {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--zc-muted);
}

.legal-document strong {
  color: var(--zc-text);
}

.legal-document a {
  color: #b9a4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-warning {
  padding: 12px 14px;
  border: 1px solid rgba(243, 191, 100, 0.35);
  border-radius: 8px;
  background: rgba(243, 191, 100, 0.06);
  color: var(--zc-amber) !important;
  font-size: 0.78rem;
}

.zc-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 18px;
}

.zc-footer-legal a {
  color: var(--zc-muted);
  font-size: 0.7rem;
}

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

@media (max-width: 760px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-navigation {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .legal-navigation a {
    text-align: center;
  }

  .legal-document > section {
    grid-template-columns: 38px minmax(0, 1fr);
  }
}

/* =========================================================
   ZENITCORE PUBLIC HOME REDESIGN — 2026-06
   Scoped to .zc-home-redesign to preserve legal/auth pages.
   ========================================================= */

.zc-home-redesign {
  background:
    radial-gradient(circle at 77% 8%, rgba(126, 87, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 14% 28%, rgba(91, 53, 214, 0.08), transparent 26rem),
    #08090c;
}

.zc-home-redesign .zc-main {
  overflow: hidden;
}

.zc-public-hero {
  position: relative;
  padding: 8.5rem 0 5.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.zc-public-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.zc-public-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
  align-items: center;
  gap: 4rem;
}

.zc-public-hero-copy h1 {
  max-width: 720px;
  margin: 1.25rem 0 1.5rem;
  font-size: clamp(4.4rem, 7.2vw, 7.8rem);
  line-height: .92;
  letter-spacing: -.075em;
  color: #fff;
}

.zc-public-hero-copy h1 em {
  display: block;
  font-style: normal;
  color: #a688ff;
}

.zc-public-hero-copy > p {
  max-width: 640px;
  margin: 0;
  color: #aaa9b4;
  font-size: 1.15rem;
  line-height: 1.75;
}

.zc-public-proof {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  max-width: 520px;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.09);
}

.zc-public-proof strong {
  color: #fff;
  font-size: 1.75rem;
  letter-spacing: -.04em;
}

.zc-public-proof span {
  color: #85838f;
  font-size: .9rem;
  line-height: 1.55;
}

.zc-public-hero-visual {
  position: relative;
  min-height: 690px;
}

.zc-mascot-glow {
  position: absolute;
  top: 4%;
  right: 4%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(116, 75, 255, .24);
  filter: blur(95px);
}

.zc-public-mascot {
  position: absolute;
  z-index: 2;
  top: -3.5rem;
  right: -6rem;
  width: min(610px, 82%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 35px 65px rgba(0,0,0,.58));
}

.zc-product-preview {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 3rem;
  bottom: 0;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(20,21,27,.94), rgba(11,12,16,.97));
  box-shadow: 0 28px 80px rgba(0,0,0,.55), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(22px);
}

.zc-preview-topbar,
.zc-preview-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.zc-preview-topbar > div,
.zc-preview-chart-head > div {
  display: grid;
  gap: .25rem;
}

.zc-preview-topbar span,
.zc-preview-chart-head span,
.zc-preview-stats span {
  color: #777681;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.zc-preview-topbar strong,
.zc-preview-chart-head strong {
  color: #f5f4f8;
  font-size: .95rem;
}

.zc-preview-topbar > small {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #b8b6c0;
}

.zc-preview-topbar > small i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #77e6a7;
  box-shadow: 0 0 16px rgba(119,230,167,.65);
}

.zc-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin: 1rem 0;
}

.zc-preview-stats article {
  display: grid;
  gap: .35rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
}

.zc-preview-stats strong {
  color: #fff;
  font-size: 1.55rem;
  letter-spacing: -.04em;
}

.zc-preview-stats strong span {
  margin-left: .15rem;
  color: #777681;
  font-size: .72rem;
  letter-spacing: 0;
}

.zc-preview-stats small,
.zc-preview-chart-head > small {
  color: #777681;
  font-size: .72rem;
}

.zc-preview-chart {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  background: rgba(5,6,9,.42);
}

.zc-preview-bars {
  display: flex;
  align-items: end;
  gap: .55rem;
  height: 115px;
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

.zc-preview-bars i {
  flex: 1;
  height: var(--h);
  min-width: 8px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(to top, rgba(108,73,228,.36), #9c7cff);
  box-shadow: 0 -8px 24px rgba(135,96,255,.14);
}

.zc-preview-feed {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: .6rem;
  margin-top: .8rem;
}

.zc-preview-feed span {
  overflow: hidden;
  padding: .7rem .8rem;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 10px;
  color: #96949f;
  font-size: .72rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.zc-preview-feed i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: .45rem;
  border-radius: 50%;
}
.zc-preview-feed i.purple { background:#9b7cff; }
.zc-preview-feed i.green { background:#71daa0; }
.zc-preview-feed i.amber { background:#e4b567; }

.zc-public-trust {
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.018);
}

.zc-public-trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.zc-public-trust p {
  max-width: 720px;
  margin: 0;
  color: #c6c4cc;
  line-height: 1.7;
}

.zc-public-trust-grid > div {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .65rem;
}

.zc-public-trust-grid > div span {
  padding: .6rem .85rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: #96949f;
  font-size: .78rem;
}

.zc-public-connected,
.zc-public-areas,
.zc-public-difference,
.zc-public-final {
  padding: 7.5rem 0;
}

.zc-section-heading-v2 > div > p {
  max-width: 630px;
  margin: 1rem 0 0;
  color: #85838f;
  line-height: 1.7;
}

.zc-public-flow {
  display: grid;
  grid-template-columns: repeat(9, auto);
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.zc-public-flow article {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}

.zc-public-flow article > span {
  color: #8468dd;
  font-size: .72rem;
  letter-spacing: .12em;
}

.zc-public-flow strong,
.zc-public-flow small {
  display: block;
}

.zc-public-flow strong {
  margin-top: .8rem;
  color: #f5f4f8;
}

.zc-public-flow small {
  margin-top: .35rem;
  color: #72717b;
  line-height: 1.45;
}

.zc-public-flow > i {
  color: #5f5d67;
  font-style: normal;
}

.zc-public-areas {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.015);
}

.zc-public-area-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 1rem;
  margin-top: 3rem;
}

.zc-public-area-grid article {
  position: relative;
  min-height: 320px;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(23,24,31,.92), rgba(11,12,16,.92));
}

.zc-public-area-grid article.featured {
  grid-row: span 2;
  min-height: 660px;
}

.zc-public-area-grid article.development {
  grid-column: 2 / 4;
}

.zc-public-area-grid article > span {
  color: #6d6b76;
  font-size: .75rem;
  letter-spacing: .12em;
}

.zc-public-area-grid h3 {
  max-width: 420px;
  margin: 2rem 0 .85rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2.35rem);
  letter-spacing: -.04em;
}

.zc-public-area-grid p {
  max-width: 480px;
  margin: 0;
  color: #8b8994;
  line-height: 1.65;
}

.zc-area-status {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  padding: .45rem .65rem;
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.zc-area-status.available {
  color: #8ce6b3;
  background: rgba(70,191,124,.1);
  border: 1px solid rgba(100,220,151,.18);
}

.zc-area-status.building {
  color: #d9b877;
  background: rgba(211,157,58,.09);
  border: 1px solid rgba(225,175,81,.18);
}

.zc-area-case {
  position: absolute;
  left: 1.55rem;
  right: 1.55rem;
  bottom: 1.55rem;
  padding: 1.25rem;
  border: 1px solid rgba(148,111,255,.2);
  border-radius: 16px;
  background: rgba(120,79,244,.08);
}

.zc-area-case small,
.zc-area-case strong,
.zc-area-case span {
  display: block;
}

.zc-area-case small { color:#8c70e5; }
.zc-area-case strong { margin:.45rem 0 1rem; color:#fff; font-size:1.4rem; }
.zc-area-case span { color:#7f7d88; font-size:.8rem; }

.zc-area-lines {
  display: grid;
  gap: .65rem;
  margin-top: 3.2rem;
}

.zc-area-lines i {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(142,105,255,.45), rgba(142,105,255,.03));
}
.zc-area-lines i:nth-child(2){width:78%}
.zc-area-lines i:nth-child(3){width:52%}

.zc-area-mini-bars {
  display: flex;
  align-items: end;
  gap: .6rem;
  height: 92px;
  margin-top: 2.2rem;
}
.zc-area-mini-bars i {
  flex:1;
  height:var(--h);
  border-radius:5px 5px 2px 2px;
  background:linear-gradient(to top, rgba(101,66,214,.28), #9270ed);
}

.zc-area-progress {
  margin-top: 2.4rem;
}
.zc-area-progress > span {
  display:block;
  height:7px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.06);
}
.zc-area-progress i {
  display:block;
  width:62%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,#7252d4,#aa8cff);
}
.zc-area-progress small {
  display:block;
  margin-top:.7rem;
  color:#777681;
}

.zc-public-difference-grid {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:5rem;
}

.zc-public-difference-grid > div:first-child > span,
.zc-public-final-box > div:first-child > span {
  color:#8063d5;
  font-size:.75rem;
  letter-spacing:.14em;
}

.zc-public-difference h2,
.zc-public-final h2 {
  margin:1.2rem 0 0;
  color:#fff;
  font-size:clamp(2.5rem,4.5vw,4.6rem);
  line-height:1.02;
  letter-spacing:-.055em;
}

.zc-difference-list {
  display:grid;
  gap:.75rem;
}

.zc-difference-list article {
  display:grid;
  grid-template-columns:46px 1fr;
  gap:1.15rem;
  padding:1.35rem 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.zc-difference-list article > strong { color:#7659cc; font-size:.78rem; }
.zc-difference-list h3 { margin:0 0 .45rem; color:#f5f4f8; font-size:1.15rem; }
.zc-difference-list p { margin:0; color:#85838f; line-height:1.6; }

.zc-public-final {
  padding-top:3rem;
}

.zc-public-final-box {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:4rem;
  align-items:end;
  padding:3rem;
  border:1px solid rgba(159,124,255,.17);
  border-radius:26px;
  background:
    radial-gradient(circle at 85% 20%, rgba(126,87,255,.18), transparent 23rem),
    linear-gradient(145deg, rgba(24,22,34,.96), rgba(10,11,15,.96));
}

.zc-public-final-box > div:last-child p {
  margin:0 0 1.5rem;
  color:#9a98a3;
  line-height:1.7;
}


.zc-module-category[id] {
  scroll-margin-top: 7rem;
}


/* Acceso público y seguridad avanzada */

.zc-modules-stack article.red {
  border-color: rgba(245, 107, 122, .16);
}

.zc-modules-stack article.red > span {
  background: rgba(245, 107, 122, .15);
}

.zc-modules-stack article.red b {
  color: #ffc0c8;
  background: rgba(245, 107, 122, .1);
}

.zc-module-demo-red {
  --demo-accent: #f56b7a;
  background:
    radial-gradient(
      circle at 92% 0%,
      rgba(245, 107, 122, .18),
      transparent 20rem
    ),
    linear-gradient(
      155deg,
      rgba(58, 31, 39, .99),
      rgba(22, 14, 19, .99)
    );
}

.zc-public-tools-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.zc-public-tools-heading > span {
  color: #a17dff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.zc-public-tools-heading h2 {
  margin: 1rem 0;
  color: #fff;
  font-size: clamp(2.8rem, 4.7vw, 5rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.zc-public-tools-heading p {
  margin: 0;
  color: #bbb6c4;
  font-size: 1.02rem;
  line-height: 1.76;
}

.zc-public-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.zc-public-tools-grid a {
  --tool-accent: #a47bff;
  --tool-glow: rgba(164, 123, 255, .2);

  position: relative;
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 22px;
  background:
    linear-gradient(
      155deg,
      rgba(31,32,45,.98),
      rgba(13,14,21,.98)
    );
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.zc-public-tools-grid a::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--tool-accent);
}

.zc-public-tools-grid a::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: var(--tool-glow);
  filter: blur(18px);
}

.zc-public-tools-grid a:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 34px 85px rgba(0,0,0,.36);
}

.zc-public-tools-grid a.applications {
  --tool-accent: #58a7ff;
  --tool-glow: rgba(88,167,255,.2);
}

.zc-public-tools-grid a.levels {
  --tool-accent: #54dec7;
  --tool-glow: rgba(84,222,199,.18);
}

.zc-public-tools-grid small,
.zc-public-tools-grid strong,
.zc-public-tools-grid p,
.zc-public-tools-grid span {
  position: relative;
  z-index: 1;
}

.zc-public-tools-grid small {
  color: #9c97a5;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.zc-public-tools-grid strong {
  margin-top: 1.05rem;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.15;
}

.zc-public-tools-grid p {
  margin: .85rem 0 0;
  color: #aaa5b2;
  font-size: .83rem;
  line-height: 1.62;
}

.zc-public-tools-grid span {
  align-self: end;
  margin-top: 1.4rem;
  color: #eee8ff;
  font-size: .78rem;
  font-weight: 800;
}

.zc-risk-preview {
  display: grid;
  gap: .7rem;
  margin-top: 1rem;
}

.zc-risk-preview article {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 13px;
  background: rgba(255,255,255,.03);
}

.zc-risk-preview article > div {
  display: grid;
  gap: .18rem;
}

.zc-risk-preview strong {
  color: #f4eff6;
  font-size: .78rem;
}

.zc-risk-preview small {
  color: #918b98;
  font-size: .65rem;
}

.zc-risk-preview b {
  color: #ffc0c8;
  font-size: .72rem;
}

.zc-risk-preview article:last-child b {
  color: #85e7d1;
}

.zc-risk-total {
  display: grid;
  gap: .25rem;
  margin-top: .9rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(245,107,122,.08);
}

.zc-risk-total span {
  color: #d8b4ba;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.zc-risk-total strong {
  color: #fff;
  font-size: 1.5rem;
}

.zc-risk-total small {
  color: #a99398;
  font-size: .67rem;
}

@media (max-width: 900px) {
  .zc-public-tools-grid {
    grid-template-columns: 1fr;
  }

  .zc-public-tools-grid a {
    min-height: 0;
  }
}

@media (max-width: 1120px) {
  .zc-public-hero-grid {
    grid-template-columns: 1fr;
  }
  .zc-public-hero-visual {
    min-height: 660px;
  }
  .zc-public-mascot {
    right: 0;
  }
  .zc-product-preview {
    right: 0;
  }
  .zc-public-flow {
    grid-template-columns: 1fr;
  }
  .zc-public-flow > i {
    transform: rotate(90deg);
    justify-self: center;
  }
  .zc-public-area-grid {
    grid-template-columns: 1fr 1fr;
  }
  .zc-public-area-grid article.featured {
    grid-row: auto;
    min-height: 430px;
  }
  .zc-public-area-grid article.development {
    grid-column: 1 / 3;
  }
}

@media (max-width: 760px) {
  .zc-public-hero {
    padding: 6.5rem 0 3.5rem;
  }
  .zc-public-hero-copy h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }
  .zc-public-hero-copy > p {
    font-size: 1rem;
  }
  .zc-public-proof {
    align-items: flex-start;
  }
  .zc-public-hero-visual {
    min-height: 600px;
    margin-top: 1rem;
  }
  .zc-public-mascot {
    top: 0;
    right: 50%;
    width: 500px;
    max-width: 110%;
    transform: translateX(50%);
  }
  .zc-product-preview {
    left: 0;
    right: 0;
    padding: .85rem;
    border-radius: 18px;
  }
  .zc-preview-stats {
    grid-template-columns: 1fr 1fr;
  }
  .zc-preview-stats article:last-child {
    display:none;
  }
  .zc-preview-feed {
    grid-template-columns:1fr;
  }
  .zc-preview-feed span:nth-child(n+2) {
    display:none;
  }
  .zc-public-trust-grid,
  .zc-public-difference-grid,
  .zc-public-final-box {
    grid-template-columns:1fr;
  }
  .zc-public-trust-grid > div {
    justify-content:flex-start;
  }
  .zc-public-connected,
  .zc-public-areas,
  .zc-public-difference,
  .zc-public-final {
    padding:5rem 0;
  }
  .zc-public-area-grid {
    grid-template-columns:1fr;
  }
  .zc-public-area-grid article.development {
    grid-column:auto;
  }
  .zc-public-final-box {
    gap:2rem;
    padding:1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zc-home-redesign *,
  .zc-home-redesign *::before,
  .zc-home-redesign *::after {
    scroll-behavior:auto !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}


/* ==========================================================================\n   ZENITCORE PUBLIC HOME — UNIFIED 2026\n   ========================================================================== */

.zc-home-redesign {
  background:
    radial-gradient(circle at 78% 8%, rgba(131, 86, 255, .19), transparent 29rem),
    radial-gradient(circle at 16% 30%, rgba(45, 145, 255, .09), transparent 25rem),
    linear-gradient(180deg, #08090d 0%, #0c0f18 52%, #08090d 100%);
}

.zc-home-redesign .zc-header {
  background: rgba(8, 9, 14, .88);
  border-bottom: 1px solid rgba(160, 122, 255, .14);
  backdrop-filter: blur(18px);
}

.zc-home-redesign .zc-header-inner { min-height: 78px; }
.zc-home-redesign .zc-brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  border-color: rgba(169, 132, 255, .3);
  background: #11121a;
  box-shadow: 0 0 28px rgba(126, 77, 255, .18);
}
.zc-home-redesign .zc-brand-mark img { transform: scale(1.08); }


/* ============================================================
   PORTADA PÚBLICA — REINICIO VISUAL
   ============================================================ */

/* ========================================================================== 
   ZENITCORE · WEB PÚBLICA 2026
   Portada y módulos unificados. Sin estilos inline y compatible con CSP.
   ========================================================================== */

.zc-home-reboot,
.zc-modules-rebuilt {
  color: #f7f5ff;
  background:
    radial-gradient(circle at 82% 4%, rgba(139, 92, 246, .28), transparent 31rem),
    radial-gradient(circle at 8% 24%, rgba(52, 132, 255, .17), transparent 28rem),
    radial-gradient(circle at 72% 68%, rgba(36, 215, 183, .09), transparent 30rem),
    linear-gradient(180deg, #11131d 0%, #0b0c13 48%, #10111a 100%);
}

.zc-rb-main,
.zc-modules-main {
  overflow: hidden;
}

.zc-home-reboot .zc-button.primary,
.zc-modules-rebuilt .zc-button.primary {
  color: #fff;
  border-color: rgba(181, 151, 255, .34);
  background: linear-gradient(135deg, #a476ff 0%, #7046dc 100%);
  box-shadow: 0 16px 42px rgba(112, 70, 220, .28);
}

.zc-home-reboot .zc-button.primary:hover,
.zc-modules-rebuilt .zc-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(112, 70, 220, .38);
}

.zc-home-reboot .zc-button.ghost,
.zc-modules-rebuilt .zc-button.ghost {
  color: #f1edf8;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045);
}

/* PORTADA */
.zc-rb-hero {
  position: relative;
  padding: clamp(4.2rem, 6vw, 6.2rem) 0 clamp(5rem, 8vw, 7.2rem);
}

.zc-rb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .52;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 15%, transparent 82%);
}

.zc-rb-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: clamp(2.8rem, 5vw, 6rem);
}

.zc-rb-copy { position: relative; z-index: 2; }

.zc-rb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .46rem .72rem;
  border: 1px solid rgba(167, 126, 255, .18);
  border-radius: 999px;
  color: #c8b4ff;
  background: rgba(139, 92, 246, .07);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.zc-rb-eyebrow i,
.zc-rb-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #62dfaa;
  box-shadow: 0 0 16px rgba(98, 223, 170, .62);
}

.zc-rb-copy h1 {
  max-width: 860px;
  margin: .55rem 0 1.15rem;
  color: #fff;
  font-size: clamp(3.7rem, 6.5vw, 7.1rem);
  line-height: .92;
  letter-spacing: -.065em;
}

.zc-rb-copy h1 em {
  display: inline-block;
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, #b794ff 0%, #6ea8ff 56%, #70e1c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.zc-rb-copy > p {
  max-width: 630px;
  margin: 0;
  color: #c1bdca;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.75;
}

.zc-rb-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

.zc-rb-proof {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 2rem;
  color: #a9a5b2;
}

.zc-rb-proof strong { color: #fff; font-size: 1.05rem; }
.zc-rb-proof span { font-size: .86rem; }

.zc-rb-scene { position: relative; min-height: 630px; }
.zc-rb-glow { position: absolute; border-radius: 50%; filter: blur(52px); pointer-events: none; }
.zc-rb-glow-purple { width: 310px; height: 310px; right: 2%; top: 0; background: rgba(142, 93, 255, .28); }
.zc-rb-glow-blue { width: 270px; height: 270px; left: 4%; bottom: 6%; background: rgba(58, 145, 255, .18); }

.zc-rb-window {
  position: absolute;
  inset: 4rem 1.5rem 3rem 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 0%, rgba(142, 93, 255, .17), transparent 23rem),
    linear-gradient(155deg, rgba(36,38,53,.99), rgba(13,14,22,.99));
  box-shadow: 0 42px 110px rgba(0,0,0,.5), 0 0 76px rgba(112,70,220,.12), inset 0 1px rgba(255,255,255,.07);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.zc-rb-window > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
}

.zc-rb-window-brand { display: flex; align-items: center; gap: .7rem; }
.zc-rb-window-brand img { width: 38px; height: 38px; border-radius: 11px; }
.zc-rb-window-brand div { display: grid; gap: .1rem; }
.zc-rb-window-brand strong { color: #fff; font-size: .9rem; }
.zc-rb-window-brand small { color: #8f8a98; font-size: .65rem; }
.zc-rb-live { display: inline-flex; align-items: center; gap: .5rem; color: #b7e8d3; font-size: .68rem; font-weight: 800; }

.zc-rb-window-body { display: grid; grid-template-columns: 118px 1fr; min-height: 490px; }
.zc-rb-window-body aside { display: grid; align-content: start; gap: .28rem; padding: 1rem .8rem; border-right: 1px solid rgba(255,255,255,.06); background: rgba(0,0,0,.12); }
.zc-rb-window-body aside span { padding: .62rem .7rem; border-radius: 9px; color: #777381; font-size: .67rem; }
.zc-rb-window-body aside span.active { color: #eee8ff; background: rgba(144,102,245,.13); }

.zc-rb-dashboard { display: grid; align-content: start; gap: .8rem; padding: 1.05rem; }
.zc-rb-dash-title,
.zc-rb-case-head,
.zc-rb-demo-top,
.zc-staff-chart-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.zc-rb-dash-title > div,
.zc-rb-case-head > div,
.zc-rb-demo-top > div,
.zc-staff-chart-head > div { display: grid; gap: .22rem; }
.zc-rb-dash-title small,
.zc-rb-case-head small,
.zc-rb-demo-top small,
.zc-staff-chart-head small { color: #8e8997; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.zc-rb-dash-title strong,
.zc-rb-case-head strong,
.zc-rb-demo-top strong,
.zc-staff-chart-head strong { color: #fff; font-size: .86rem; }
.zc-rb-dash-title > span { color: #7d7985; font-size: .63rem; }

.zc-rb-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; }
.zc-rb-metrics article { position: relative; display: grid; gap: .18rem; padding: .75rem; border: 1px solid rgba(255,255,255,.055); border-radius: 13px; background: rgba(255,255,255,.028); }
.zc-rb-metrics article > i { position: absolute; top: .7rem; right: .7rem; width: 7px; height: 7px; border-radius: 50%; }
.zc-rb-metrics i.purple { background: #a27bff; box-shadow: 0 0 13px rgba(162,123,255,.55); }
.zc-rb-metrics i.blue { background: #65a9ff; box-shadow: 0 0 13px rgba(101,169,255,.5); }
.zc-rb-metrics i.teal { background: #59dec7; box-shadow: 0 0 13px rgba(89,222,199,.48); }
.zc-rb-metrics small { color: #827e8a; font-size: .61rem; }
.zc-rb-metrics strong { color: #fff; font-size: 1.1rem; }
.zc-rb-metrics span { color: #7fdcc7; font-size: .58rem; }

.zc-rb-main-card { padding: .9rem; border: 1px solid rgba(165,124,255,.13); border-radius: 15px; background: linear-gradient(145deg, rgba(139,92,246,.08), rgba(255,255,255,.02)); }
.zc-rb-case-head > span,
.zc-rb-demo-top > span { padding: .34rem .5rem; border-radius: 999px; color: #f0c77f; background: rgba(239,183,93,.1); font-size: .58rem; font-weight: 800; }
.zc-rb-timeline { display: grid; gap: .55rem; margin-top: .8rem; }
.zc-rb-timeline span { display: grid; grid-template-columns: auto 1fr; column-gap: .55rem; align-items: center; }
.zc-rb-timeline span i { grid-row: 1 / 3; width: 9px; height: 9px; border-radius: 50%; background: #5d5868; }
.zc-rb-timeline span.done i { background: #52d5b8; box-shadow: 0 0 12px rgba(82,213,184,.35); }
.zc-rb-timeline span.current i { background: #a17bff; box-shadow: 0 0 12px rgba(161,123,255,.4); }
.zc-rb-timeline b { color: #d8d3df; font-size: .66rem; }
.zc-rb-timeline small { color: #777280; font-size: .58rem; }
.zc-rb-feed { display: grid; gap: .4rem; }
.zc-rb-feed span { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .45rem; padding: .58rem .68rem; border-radius: 10px; background: rgba(255,255,255,.024); }
.zc-rb-feed i { width: 7px; height: 7px; border-radius: 50%; }
.zc-rb-feed i.purple { background: #9f78fa; }
.zc-rb-feed i.teal { background: #58d9c1; }
.zc-rb-feed b { color: #bbb6c4; font-size: .62rem; }
.zc-rb-feed small { color: #6f6a77; font-size: .57rem; }

.zc-rb-mascot { position: absolute; right: -3.5rem; bottom: -1rem; width: min(34%, 230px); z-index: 3; filter: drop-shadow(0 24px 35px rgba(0,0,0,.5)); }

.zc-rb-trust { border-block: 1px solid rgba(153,126,255,.12); background: linear-gradient(90deg, rgba(139,92,246,.08), rgba(61,139,255,.07), rgba(45,211,179,.055)); }
.zc-rb-trust .site-container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 92px; }
.zc-rb-trust p { margin: 0; color: #b9b4c1; font-size: .86rem; }
.zc-rb-trust div div { display: flex; flex-wrap: wrap; gap: .7rem; }
.zc-rb-trust span { padding: .43rem .65rem; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; color: #f1edf7; background: rgba(255,255,255,.03); font-size: .7rem; }

.zc-rb-feature { position: relative; padding: clamp(5rem, 9vw, 8.3rem) 0; }
.zc-rb-feature::after { content: ''; position: absolute; width: 25rem; height: 25rem; right: -13rem; top: 17%; border-radius: 50%; background: rgba(126,87,255,.07); filter: blur(56px); pointer-events: none; }
.zc-rb-feature-alt { background: radial-gradient(circle at 12% 50%, rgba(49,143,255,.1), transparent 25rem), rgba(255,255,255,.022); border-block: 1px solid rgba(116,151,255,.09); }
.zc-rb-feature-grid { position: relative; display: grid; grid-template-columns: minmax(0,.88fr) minmax(500px,1.12fr); align-items: center; gap: clamp(3rem,7vw,7rem); }
.zc-rb-feature-alt .zc-rb-demo { order: 1; }
.zc-rb-feature-alt .zc-rb-feature-copy { order: 2; }
.zc-rb-feature-copy > span { color: #a17dff; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.zc-rb-feature-copy h2 { max-width: 650px; margin: 1rem 0 1.15rem; color: #fff; font-size: clamp(2.8rem,4.7vw,5rem); line-height: .98; letter-spacing: -.06em; }
.zc-rb-feature-copy p { max-width: 610px; margin: 0; color: #bbb6c4; font-size: 1.02rem; line-height: 1.76; }
.zc-rb-feature-copy a { display: inline-flex; margin-top: 1.4rem; color: #e1d5ff; font-size: .9rem; font-weight: 800; transition: transform .2s ease, color .2s ease; }
.zc-rb-feature-copy a:hover { color: #fff; transform: translateX(4px); }

.zc-rb-demo,
.zc-module-demo {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
  box-shadow: 0 32px 82px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.055);
}
.zc-rb-demo::before,
.zc-module-demo::before { content: ''; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px; background: var(--demo-accent); }
.zc-rb-demo-purple,
.zc-module-demo-purple { --demo-accent: #a47bff; background: radial-gradient(circle at 92% 0%, rgba(164,123,255,.19), transparent 20rem), linear-gradient(155deg, rgba(42,38,60,.99), rgba(16,15,25,.99)); }
.zc-rb-demo-blue,
.zc-module-demo-blue { --demo-accent: #58a7ff; background: radial-gradient(circle at 92% 0%, rgba(88,167,255,.18), transparent 20rem), linear-gradient(155deg, rgba(32,43,62,.99), rgba(14,17,26,.99)); }
.zc-rb-demo-teal,
.zc-module-demo-teal { --demo-accent: #54dec7; background: radial-gradient(circle at 92% 0%, rgba(84,222,199,.17), transparent 20rem), linear-gradient(155deg, rgba(29,49,49,.99), rgba(13,20,23,.99)); }
.zc-rb-demo-amber,
.zc-module-demo-amber { --demo-accent: #efb75d; background: radial-gradient(circle at 92% 0%, rgba(239,183,93,.17), transparent 20rem), linear-gradient(155deg, rgba(55,43,28,.99), rgba(21,17,14,.99)); }
.zc-module-demo-pink { --demo-accent: #ef7db9; background: radial-gradient(circle at 92% 0%, rgba(239,125,185,.17), transparent 20rem), linear-gradient(155deg, rgba(53,31,47,.99), rgba(21,14,20,.99)); }

.zc-rb-user { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .8rem; margin-top: 1rem; padding: .95rem; border: 1px solid rgba(255,255,255,.07); border-radius: 15px; background: rgba(255,255,255,.025); }
.zc-rb-avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; color: #fff; font-weight: 900; background: linear-gradient(145deg,#9c73ff,#5937b4); }
.zc-rb-user > div:nth-child(2) { display: grid; gap: .15rem; }
.zc-rb-user strong { color: #fff; font-size: .82rem; }
.zc-rb-user small { color: #888391; font-size: .66rem; }
.zc-rb-user > b { color: #f0a2a2; font-size: .65rem; }
.zc-rb-evidence { display: grid; gap: .55rem; margin-top: .8rem; padding: 1rem; border-radius: 15px; background: rgba(0,0,0,.16); }
.zc-rb-evidence small { color: #8e8997; text-transform: uppercase; letter-spacing: .08em; }
.zc-rb-evidence span { padding: .65rem .75rem; border-radius: 9px; color: #b8b3c0; background: rgba(255,255,255,.04); font-size: .72rem; }
.zc-rb-demo-actions { display: flex; justify-content: flex-end; gap: .55rem; margin-top: .85rem; }
.zc-rb-demo-actions button { padding: .62rem .8rem; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; color: #c7c1ce; background: rgba(255,255,255,.035); font: inherit; font-size: .68rem; }
.zc-rb-demo-actions button:last-child { color: #f0eaff; border-color: rgba(156,115,255,.25); background: rgba(156,115,255,.13); }
.zc-rb-chat { display: grid; gap: .8rem; margin-top: 1.1rem; }
.zc-rb-chat p { max-width: 78%; margin: 0; padding: .9rem 1rem; border-radius: 15px; color: #cdc8d2; font-size: .76rem; line-height: 1.55; }
.zc-rb-chat p.user { justify-self: start; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.04); border-bottom-left-radius: 5px; }
.zc-rb-chat p.staff { justify-self: end; color: #e7f1ff; background: rgba(68,143,255,.15); border-bottom-right-radius: 5px; }
.zc-rb-chat > div { display: flex; gap: .55rem; margin-top: .4rem; }
.zc-rb-chat > div span { padding: .55rem .72rem; border-radius: 8px; color: #9baec9; background: rgba(68,143,255,.08); font-size: .66rem; }
.zc-rb-staff-score { display: flex; align-items: end; gap: .3rem; margin-top: 1.1rem; }
.zc-rb-staff-score strong { color: #fff; font-size: 4.2rem; line-height: .9; letter-spacing: -.07em; }
.zc-rb-staff-score > span { color: #8f8a96; font-size: 1rem; }
.zc-rb-staff-score p { margin: 0 0 .25rem auto; color: #7fdcc8; font-size: .72rem; font-weight: 800; }

.zc-rb-staff-bars,
.zc-staff-bars { display: flex; align-items: flex-end; gap: .55rem; }
.zc-rb-staff-bars { height: 180px; margin-top: 1.2rem; padding: 1rem; border-radius: 16px; background: repeating-linear-gradient(to top, rgba(255,255,255,.045) 0 1px, transparent 1px 33.333%); }
.zc-rb-staff-bars i,
.zc-staff-bars i { display: block; flex: 1 1 0; align-self: flex-end; min-height: 10px; border-radius: 7px 7px 2px 2px; background: linear-gradient(to top,#168f82 0%,#54dec7 72%,#a3f5e8 100%); box-shadow: 0 0 20px rgba(79,212,191,.16); }
.zc-rb-staff-bars i:nth-child(2), .zc-rb-staff-bars i:nth-child(6), .zc-staff-bars i:nth-child(2), .zc-staff-bars i:nth-child(6) { background: linear-gradient(to top,#327bd5,#8acfff); }
.zc-rb-staff-bars i:nth-child(5), .zc-staff-bars i:nth-child(5) { background: linear-gradient(to top,#b97b28,#ffd08a); }
.zc-rb-staff-bars i:nth-child(1) { height:58px; } .zc-rb-staff-bars i:nth-child(2) { height:92px; } .zc-rb-staff-bars i:nth-child(3) { height:74px; } .zc-rb-staff-bars i:nth-child(4) { height:116px; } .zc-rb-staff-bars i:nth-child(5) { height:96px; } .zc-rb-staff-bars i:nth-child(6) { height:142px; } .zc-rb-staff-bars i:nth-child(7) { height:108px; }
.zc-staff-bars i:nth-child(1) { height:46px; } .zc-staff-bars i:nth-child(2) { height:72px; } .zc-staff-bars i:nth-child(3) { height:61px; } .zc-staff-bars i:nth-child(4) { height:88px; } .zc-staff-bars i:nth-child(5) { height:76px; } .zc-staff-bars i:nth-child(6) { height:101px; } .zc-staff-bars i:nth-child(7) { height:93px; }
.zc-rb-staff-legend { display: flex; justify-content: space-between; gap: 1rem; margin-top: .8rem; color: #908b98; font-size: .65rem; }

.zc-rb-log-list,
.zc-module-log-list { display: grid; gap: .62rem; margin-top: 1.05rem; }
.zc-rb-log-list article,
.zc-module-log-list article { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .72rem; padding: .82rem .9rem; border: 1px solid rgba(255,255,255,.065); border-radius: 13px; background: rgba(255,255,255,.03); }
.zc-rb-log-list article > i,
.zc-module-log-list article > i { width: 9px; height: 9px; border-radius: 50%; }
.zc-rb-log-list i.purple,.zc-module-log-list i.purple { background:#a27bff; box-shadow:0 0 13px rgba(162,123,255,.45); }
.zc-rb-log-list i.blue,.zc-module-log-list i.blue { background:#66aaff; box-shadow:0 0 13px rgba(102,170,255,.42); }
.zc-rb-log-list i.teal,.zc-module-log-list i.teal { background:#58ddc5; box-shadow:0 0 13px rgba(88,221,197,.42); }
.zc-rb-log-list i.amber,.zc-module-log-list i.amber { background:#efb75d; box-shadow:0 0 13px rgba(239,183,93,.4); }
.zc-rb-log-list div,.zc-module-log-list div { display:grid; gap:.15rem; }
.zc-rb-log-list strong,.zc-module-log-list strong { color:#f2eef7; font-size:.76rem; }
.zc-rb-log-list small,.zc-module-log-list small { color:#908b97; font-size:.65rem; }
.zc-rb-log-list time,.zc-module-log-list time { color:#77717e; font-size:.62rem; }

.zc-rb-cta { padding: 1rem 0 7rem; }
.zc-rb-cta-box { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: end; padding: clamp(2rem,5vw,4rem); border: 1px solid rgba(156,115,255,.2); border-radius: 30px; background: radial-gradient(circle at 10% 10%, rgba(156,115,255,.18), transparent 24rem), linear-gradient(145deg,#1a1825,#0b0c11); }
.zc-rb-cta-box span { color:#aa82ff; font-size:.72rem; font-weight:900; letter-spacing:.14em; }
.zc-rb-cta-box h2 { max-width:780px; margin:.8rem 0 0; color:#fff; font-size:clamp(2.5rem,4.5vw,4.8rem); line-height:1; letter-spacing:-.06em; }
.zc-rb-cta-box > div:last-child { display:grid; justify-items:start; gap:1rem; }
.zc-rb-cta-box p { margin:0; color:#aaa5b2; line-height:1.6; }

/* MÓDULOS */
.zc-modules-hero-v3 { position:relative; padding:clamp(6.5rem,10vw,9rem) 0 clamp(5rem,8vw,7rem); }
.zc-modules-hero-v3::before { content:''; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at 76% 28%, rgba(142,93,255,.2), transparent 28rem); }
.zc-modules-hero-grid-v3 { position:relative; display:grid; grid-template-columns:minmax(0,.88fr) minmax(480px,1.12fr); align-items:center; gap:clamp(3rem,7vw,7rem); }
.zc-modules-kicker { color:#aa84ff; font-size:.75rem; font-weight:900; letter-spacing:.13em; text-transform:uppercase; }
.zc-modules-hero-copy h1 { max-width:780px; margin:1rem 0 1.3rem; color:#fff; font-size:clamp(4rem,7.3vw,7.5rem); line-height:.9; letter-spacing:-.075em; }
.zc-modules-hero-copy h1 em { color:transparent; font-style:normal; background:linear-gradient(100deg,#b794ff,#6ea8ff 56%,#70e1c7); -webkit-background-clip:text; background-clip:text; }
.zc-modules-hero-copy p { max-width:650px; margin:0; color:#bdb8c5; font-size:1.05rem; line-height:1.75; }
.zc-modules-hero-actions { display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.8rem; }
.zc-modules-stack { display:grid; gap:.75rem; padding:1.15rem; border:1px solid rgba(255,255,255,.1); border-radius:28px; background:linear-gradient(155deg,rgba(33,35,49,.98),rgba(13,14,22,.98)); box-shadow:0 34px 90px rgba(0,0,0,.42); }
.zc-modules-stack article { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:.9rem; padding:1rem; border:1px solid rgba(255,255,255,.065); border-radius:15px; background:rgba(255,255,255,.03); transition:transform .2s ease,border-color .2s ease,background .2s ease; }
.zc-modules-stack article:hover { transform:translateX(-4px); background:rgba(255,255,255,.045); }
.zc-modules-stack article > span { display:grid; place-items:center; width:38px; height:38px; border-radius:11px; color:#fff; font-weight:900; background:rgba(255,255,255,.06); }
.zc-modules-stack article div { display:grid; gap:.13rem; }
.zc-modules-stack small { color:#898491; font-size:.65rem; text-transform:uppercase; letter-spacing:.08em; }
.zc-modules-stack strong { color:#f5f1fa; font-size:.84rem; }
.zc-modules-stack b { padding:.35rem .52rem; border-radius:999px; font-size:.58rem; }
.zc-modules-stack article.purple { border-color:rgba(164,123,255,.16); } .zc-modules-stack article.purple > span { background:rgba(164,123,255,.16); } .zc-modules-stack article.purple b { color:#d7c3ff; background:rgba(164,123,255,.11); }
.zc-modules-stack article.blue { border-color:rgba(88,167,255,.15); } .zc-modules-stack article.blue > span { background:rgba(88,167,255,.15); } .zc-modules-stack article.blue b { color:#b8d9ff; background:rgba(88,167,255,.1); }
.zc-modules-stack article.teal { border-color:rgba(84,222,199,.15); } .zc-modules-stack article.teal > span { background:rgba(84,222,199,.15); } .zc-modules-stack article.teal b { color:#b8f1e6; background:rgba(84,222,199,.1); }
.zc-modules-stack article.amber { border-color:rgba(239,183,93,.15); } .zc-modules-stack article.amber > span { background:rgba(239,183,93,.15); } .zc-modules-stack article.amber b { color:#f5d39d; background:rgba(239,183,93,.1); }
.zc-modules-stack article.pink { border-color:rgba(239,125,185,.15); } .zc-modules-stack article.pink > span { background:rgba(239,125,185,.15); } .zc-modules-stack article.pink b { color:#f5b9d8; background:rgba(239,125,185,.1); }

.zc-modules-nav-section { position:sticky; top:0; z-index:8; border-block:1px solid rgba(255,255,255,.07); background:rgba(11,12,19,.82); backdrop-filter:blur(18px); }
.zc-modules-nav { display:flex; gap:.55rem; overflow:auto; padding:.72rem 0; scrollbar-width:none; }
.zc-modules-nav::-webkit-scrollbar { display:none; }
.zc-modules-nav a { flex:0 0 auto; padding:.56rem .78rem; border-radius:999px; color:#aaa5b2; font-size:.72rem; font-weight:800; }
.zc-modules-nav a:hover { color:#fff; background:rgba(255,255,255,.06); }

.zc-module-category { scroll-margin-top:6rem; padding:clamp(5rem,9vw,8.2rem) 0; }
.zc-module-category.alt { background:radial-gradient(circle at 12% 50%,rgba(49,143,255,.09),transparent 25rem),rgba(255,255,255,.02); border-block:1px solid rgba(255,255,255,.055); }
.zc-module-category-grid { display:grid; grid-template-columns:minmax(0,.86fr) minmax(520px,1.14fr); align-items:center; gap:clamp(3rem,7vw,7rem); }
.zc-module-category-grid.reverse .zc-module-demo { order:1; }
.zc-module-category-grid.reverse .zc-module-category-copy { order:2; }
.zc-module-category-copy > span { color:#a17dff; font-size:.72rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.zc-module-category-copy h2 { max-width:650px; margin:1rem 0 1.15rem; color:#fff; font-size:clamp(2.8rem,4.7vw,5rem); line-height:.98; letter-spacing:-.06em; }
.zc-module-category-copy p { max-width:610px; margin:0; color:#bbb6c4; font-size:1.02rem; line-height:1.76; }
.zc-module-tags { display:flex; flex-wrap:wrap; gap:.55rem; margin-top:1.35rem; }
.zc-module-tags span { padding:.48rem .65rem; border:1px solid rgba(255,255,255,.075); border-radius:999px; color:#bdb8c5; background:rgba(255,255,255,.025); font-size:.68rem; }
.zc-module-demo { min-height:0; }
.zc-module-demo-head { position:relative; display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.zc-module-demo-head > div { display:grid; gap:.23rem; }
.zc-module-demo-head small { color:#908b98; text-transform:uppercase; letter-spacing:.1em; font-size:.67rem; }
.zc-module-demo-head strong { color:#fff; }
.zc-module-demo-head > span { padding:.4rem .6rem; border-radius:999px; font-size:.62rem; font-weight:900; text-transform:uppercase; }
.zc-module-demo-head > span.ready { color:#93e8bd; background:rgba(89,215,143,.11); }
.zc-module-demo-head > span.building { color:#efc879; background:rgba(231,176,84,.11); }

.zc-module-case-card { margin-top:1rem; padding:1rem; border:1px solid rgba(255,255,255,.07); border-radius:16px; background:rgba(255,255,255,.03); }
.zc-module-user { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:.75rem; }
.zc-module-user > b { display:grid; place-items:center; width:40px; height:40px; border-radius:12px; color:#fff; background:linear-gradient(145deg,#a47bff,#6541c2); }
.zc-module-user div { display:grid; gap:.15rem; }
.zc-module-user strong { color:#fff; font-size:.82rem; }
.zc-module-user small { color:#8c8794; font-size:.65rem; }
.zc-module-user > span { color:#f1a5a5; font-size:.64rem; font-weight:800; }
.zc-module-case-grid { display:grid; grid-template-columns:1fr 1fr; gap:.6rem; margin-top:.9rem; }
.zc-module-case-grid article { display:grid; gap:.24rem; padding:.75rem; border-radius:11px; background:rgba(0,0,0,.15); }
.zc-module-case-grid small { color:#827d89; font-size:.62rem; text-transform:uppercase; }
.zc-module-case-grid strong { color:#dcd7e2; font-size:.72rem; }
.zc-module-timeline { display:grid; gap:.58rem; margin-top:.85rem; }
.zc-module-timeline article { display:grid; grid-template-columns:auto 1fr; gap:.65rem; align-items:center; padding:.72rem .78rem; border-radius:11px; background:rgba(255,255,255,.025); }
.zc-module-timeline i { width:9px; height:9px; border-radius:50%; background:#a47bff; box-shadow:0 0 14px rgba(164,123,255,.4); }
.zc-module-timeline div { display:grid; gap:.12rem; }
.zc-module-timeline strong { color:#dcd7e2; font-size:.72rem; }
.zc-module-timeline span { color:#827d89; font-size:.62rem; }

.zc-ticket-context { margin-top:1rem; padding:1rem; border:1px solid rgba(255,255,255,.07); border-radius:15px; background:rgba(255,255,255,.03); }
.zc-ticket-context > small { color:#86bfff; font-size:.64rem; text-transform:uppercase; letter-spacing:.08em; }
.zc-ticket-context p { margin:.55rem 0 .75rem; color:#c7c2cc; font-size:.75rem; line-height:1.55; }
.zc-ticket-context div { display:flex; justify-content:space-between; gap:1rem; padding:.58rem .65rem; border-radius:9px; background:rgba(68,143,255,.08); }
.zc-ticket-context span,.zc-ticket-context b { color:#9eb8d9; font-size:.62rem; }
.zc-ticket-demo { display:grid; gap:.7rem; margin-top:.85rem; }
.zc-ticket-demo article { max-width:78%; padding:.75rem .85rem; border-radius:13px; background:rgba(255,255,255,.04); }
.zc-ticket-demo article.staff { justify-self:end; color:#e8f2ff; background:rgba(68,143,255,.14); }
.zc-ticket-demo b { color:#fff; font-size:.64rem; }
.zc-ticket-demo p { margin:.28rem 0 0; color:#bbb6c3; font-size:.7rem; line-height:1.5; }
.zc-ticket-demo footer { display:flex; justify-content:space-between; gap:1rem; padding-top:.7rem; border-top:1px solid rgba(255,255,255,.06); }
.zc-ticket-demo footer span,.zc-ticket-demo footer strong { color:#8ea7c7; font-size:.63rem; }

.zc-staff-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:.7rem; margin-top:1rem; }
.zc-staff-metrics article { display:grid; gap:.25rem; padding:.85rem; border:1px solid rgba(255,255,255,.065); border-radius:13px; background:rgba(255,255,255,.03); }
.zc-staff-metrics small { color:#8e8996; font-size:.62rem; text-transform:uppercase; letter-spacing:.08em; }
.zc-staff-metrics strong { color:#fff; font-size:1.35rem; }
.zc-staff-metrics span { color:#817c88; font-size:.65rem; }
.zc-staff-chart { margin-top:1rem; padding:1rem; border:1px solid rgba(255,255,255,.07); border-radius:16px; background:rgba(255,255,255,.025); }
.zc-staff-chart-head > span { padding:.36rem .52rem; border-radius:999px; color:#78e4cb; background:rgba(48,211,177,.1); font-size:.66rem; font-weight:800; }
.zc-staff-bars { height:112px; margin-top:.85rem; padding:.8rem .15rem 0; border-top:1px solid rgba(255,255,255,.055); background:repeating-linear-gradient(to top,rgba(255,255,255,.035) 0 1px,transparent 1px 33.333%); }
.zc-staff-days { display:grid; grid-template-columns:repeat(7,1fr); gap:.55rem; margin-top:.42rem; color:#716c78; font-size:.64rem; text-align:center; }
.zc-staff-summary { display:flex; flex-wrap:wrap; gap:.65rem 1.2rem; margin-top:.85rem; padding-top:.75rem; border-top:1px solid rgba(255,255,255,.055); }
.zc-staff-summary span { color:#aaa5b1; font-size:.7rem; }
.zc-staff-summary i { display:inline-block; width:7px; height:7px; margin-right:.35rem; border-radius:50%; }
.zc-staff-summary i.teal { background:#4dddc4; box-shadow:0 0 12px rgba(77,221,196,.42); }
.zc-staff-summary i.amber { background:#efb75d; box-shadow:0 0 12px rgba(239,183,93,.35); }

.zc-level-preview { margin-top:1rem; }
.zc-level-profile { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:.75rem; padding:.9rem; border:1px solid rgba(255,255,255,.07); border-radius:15px; background:rgba(255,255,255,.03); }
.zc-level-profile > b { display:grid; place-items:center; width:42px; height:42px; border-radius:13px; color:#fff; background:linear-gradient(145deg,#ef7db9,#a9477a); }
.zc-level-profile div { display:grid; gap:.15rem; }
.zc-level-profile small { color:#b78ca4; font-size:.64rem; }
.zc-level-profile strong { color:#fff; font-size:.82rem; }
.zc-level-profile > span { color:#f1b4d3; font-size:.72rem; font-weight:900; }
.zc-level-progress { height:9px; margin:.85rem 0 1rem; border-radius:999px; background:rgba(255,255,255,.06); overflow:hidden; }
.zc-level-progress div { width:72%; height:100%; border-radius:inherit; background:linear-gradient(90deg,#ef7db9,#a77cff); box-shadow:0 0 18px rgba(239,125,185,.3); }
.zc-automation-list { display:grid; gap:.6rem; }
.zc-automation-list article { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.75rem .8rem; border-radius:11px; background:rgba(255,255,255,.03); }
.zc-automation-list span { color:#d7d1dc; font-size:.72rem; }
.zc-automation-list b { color:#d7a8c1; font-size:.63rem; }

.zc-modules-final { padding:1rem 0 7rem; }
.zc-modules-final-box { display:flex; align-items:end; justify-content:space-between; gap:2rem; padding:clamp(2rem,5vw,4rem); border:1px solid rgba(156,115,255,.2); border-radius:30px; background:radial-gradient(circle at 10% 10%,rgba(156,115,255,.18),transparent 24rem),linear-gradient(145deg,#1a1825,#0b0c11); }
.zc-modules-final-box span { color:#aa82ff; font-size:.72rem; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }
.zc-modules-final-box h2 { max-width:850px; margin:.8rem 0 .8rem; color:#fff; font-size:clamp(2.4rem,4.2vw,4.5rem); line-height:1; letter-spacing:-.06em; }
.zc-modules-final-box p { max-width:680px; margin:0; color:#aaa5b2; line-height:1.6; }

@media (max-width: 1120px) {
  .zc-rb-hero-grid,
  .zc-rb-feature-grid,
  .zc-modules-hero-grid-v3,
  .zc-module-category-grid { grid-template-columns:1fr; }
  .zc-rb-scene { min-height:590px; }
  .zc-rb-window { inset:2rem 2rem 2rem 0; }
  .zc-rb-feature-alt .zc-rb-demo,
  .zc-rb-feature-alt .zc-rb-feature-copy,
  .zc-module-category-grid.reverse .zc-module-demo,
  .zc-module-category-grid.reverse .zc-module-category-copy { order:initial; }
  .zc-module-category-copy { max-width:760px; }
}

@media (max-width: 760px) {
  .zc-rb-hero,
  .zc-modules-hero-v3 { padding-top:5.6rem; }
  .zc-rb-copy h1,
  .zc-modules-hero-copy h1 { font-size:clamp(3.35rem,15vw,5.1rem); }
  .zc-rb-actions,
  .zc-modules-hero-actions { display:grid; }
  .zc-rb-actions .zc-button,
  .zc-modules-hero-actions .zc-button { width:100%; justify-content:center; }
  .zc-rb-proof { align-items:flex-start; }
  .zc-rb-scene { min-height:470px; margin-top:1rem; }
  .zc-rb-window { inset:1rem 0 1rem 0; transform:none; border-radius:21px; }
  .zc-rb-window-body { grid-template-columns:1fr; min-height:390px; }
  .zc-rb-window-body aside { display:none; }
  .zc-rb-dashboard { padding:.8rem; }
  .zc-rb-metrics { grid-template-columns:repeat(3,1fr); gap:.4rem; }
  .zc-rb-metrics article { padding:.6rem; }
  .zc-rb-mascot { right:-2rem; bottom:-.5rem; width:31%; }
  .zc-rb-trust .site-container { display:grid; padding-block:1.1rem; }
  .zc-rb-feature,
  .zc-module-category { padding:4.6rem 0; }
  .zc-rb-feature-grid,
  .zc-module-category-grid { gap:2.2rem; }
  .zc-rb-feature-copy h2,
  .zc-module-category-copy h2 { font-size:clamp(2.65rem,12vw,4rem); }
  .zc-rb-demo,
  .zc-module-demo { padding:1rem; border-radius:20px; }
  .zc-rb-cta-box,
  .zc-modules-final-box { display:grid; align-items:start; gap:1.5rem; border-radius:24px; }
  .zc-modules-stack { padding:.8rem; border-radius:21px; }
  .zc-modules-stack article { grid-template-columns:auto 1fr; }
  .zc-modules-stack article > b { grid-column:2; justify-self:start; }
  .zc-staff-metrics { grid-template-columns:repeat(3,1fr); gap:.45rem; }
  .zc-staff-metrics article { padding:.65rem; }
  .zc-staff-bars { height:105px; }
  .zc-module-case-grid { grid-template-columns:1fr; }
}

@media (max-width: 520px) {
  .zc-rb-window > header { padding:.8rem; }
  .zc-rb-window-brand small { display:none; }
  .zc-rb-metrics article span { display:none; }
  .zc-rb-metrics strong { font-size:.95rem; }
  .zc-rb-main-card { padding:.7rem; }
  .zc-rb-timeline span:nth-child(2) { display:none; }
  .zc-rb-feed span:last-child { display:none; }
  .zc-rb-mascot { width:36%; }
  .zc-rb-demo-actions { display:grid; }
  .zc-rb-demo-actions button { width:100%; }
  .zc-rb-chat p { max-width:92%; }
  .zc-rb-staff-score strong { font-size:3.5rem; }
  .zc-rb-staff-score p { max-width:110px; text-align:right; }
  .zc-rb-staff-bars { height:155px; padding-inline:.6rem; gap:.35rem; }
  .zc-rb-staff-bars i:nth-child(6) { height:125px; }
  .zc-module-user { grid-template-columns:auto 1fr; }
  .zc-module-user > span { grid-column:2; }
  .zc-staff-metrics { grid-template-columns:1fr; }
  .zc-staff-chart-head { align-items:flex-start; }
  .zc-staff-summary { display:grid; }
  .zc-ticket-demo footer { display:grid; }
}

@media (prefers-reduced-motion: reduce) {
  .zc-home-reboot *,
  .zc-modules-rebuilt * { scroll-behavior:auto !important; animation:none !important; transition:none !important; }
}


/* Portal multiservidor de miembros */
.zc-server-directory .site-container { display:grid; gap:1rem; }
.zc-server-empty { padding:2rem; border:1px solid rgba(255,255,255,.08); border-radius:20px; color:#aaa5b2; background:rgba(255,255,255,.025); }
.zc-community-links { padding:1rem 0 7rem; }
.zc-community-links .site-container { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; }
.zc-community-links a { display:grid; grid-template-columns:auto 1fr; gap:.3rem 1rem; padding:1.25rem; border:1px solid rgba(255,255,255,.08); border-radius:18px; background:linear-gradient(145deg,rgba(31,32,45,.98),rgba(13,14,21,.98)); }
.zc-community-links a span { grid-row:1/3; color:#a98aff; font-weight:900; }
.zc-community-links a strong { color:#fff; }
.zc-community-links a small { color:#918c99; }
@media (max-width:720px){ .zc-community-links .site-container { grid-template-columns:1fr; } }


/* Portal de comunidades: accesos directos y contexto */
.zc-community-welcome {
  padding: 2.4rem 0 0;
}

.zc-community-welcome .site-container {
  max-width: 920px;
}

.zc-community-welcome span {
  color: #a98aff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.zc-community-welcome h2 {
  margin: .8rem 0 .7rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.zc-community-welcome p {
  max-width: 720px;
  margin: 0;
  color: #aaa5b2;
  line-height: 1.7;
}

.zc-community-links {
  padding-top: 2.2rem;
}

.zc-community-links .site-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.zc-community-links a {
  position: relative;
  min-height: 180px;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(31,32,45,.98), rgba(13,14,21,.98));
  box-shadow: 0 22px 58px rgba(0,0,0,.25);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.zc-community-links a::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: #a47bff;
}

.zc-community-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 28px 72px rgba(0,0,0,.34);
}

.zc-community-links a.appeals::before { background: #a47bff; }
.zc-community-links a.levels::before { background: #54dec7; }
.zc-community-links a.applications::before { background: #58a7ff; }
.zc-community-links a.rules::before { background: #efb75d; }
.zc-community-links a.team::before { background: #ef7db9; }

.zc-community-links a > span {
  display: inline-flex;
  color: #8f8998;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.zc-community-links a > strong {
  display: block;
  margin-top: 1.2rem;
  color: #fff;
  font-size: 1.25rem;
}

.zc-community-links a > small {
  display: block;
  margin-top: .55rem;
  color: #aaa5b2;
  font-size: .76rem;
  line-height: 1.55;
}

.zc-community-links a.appeals {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .zc-community-links .site-container {
    grid-template-columns: 1fr;
  }

  .zc-community-links a.appeals {
    grid-column: auto;
  }
}


/* =======================================================
   PORTAL DE COMUNIDADES · AJUSTES DE NAVEGACIÓN Y LAYOUT
   ======================================================= */

.zc-community-back-wrap {
  padding-top: 2rem;
}

.zc-community-back {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #bbb6c4;
  font-size: .78rem;
  font-weight: 800;
  transition:
    color .2s ease,
    transform .2s ease;
}

.zc-community-back span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.035);
}

.zc-community-back:hover {
  color: #fff;
  transform: translateX(-3px);
}

.zc-community-head-grid {
  align-items: center;
}

.zc-community-identity {
  align-items: center;
}

.zc-community-icon {
  display: grid;
  flex: 0 0 74px;
  place-items: center;
  overflow: hidden;
}

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

.zc-community-identity > div {
  display: grid;
  align-content: center;
  gap: .25rem;
}

.zc-community-identity p {
  margin: 0;
}

.zc-community-identity h1 {
  margin: 0;
  line-height: .92;
}

.zc-community-links .site-container {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.zc-community-links a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: .55rem 1rem;
  min-height: 175px;
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(152,105,255,.12),
      transparent 14rem
    ),
    rgba(255,255,255,.025);
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.zc-community-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(169,126,255,.26);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(152,105,255,.18),
      transparent 14rem
    ),
    rgba(255,255,255,.038);
}

.zc-community-links a:first-child {
  grid-column: 1 / -1;
}

.zc-community-links a > span {
  grid-row: 1 / 3;
  color: #a47bff;
  font-family: monospace;
  font-size: .68rem;
}

.zc-community-links strong {
  color: #fff;
  font-size: 1.1rem;
}

.zc-community-links small {
  line-height: 1.55;
}

.public-appeals-layout {
  align-items: start;
}

.public-appeals-layout > aside {
  margin-top: 5.25rem;
}

.public-history-card {
  min-height: 100%;
}

.public-application-grid {
  align-items: stretch;
}

.public-application-card {
  height: 100%;
}

.public-application-card .site-button,
.public-application-card > a {
  margin-top: auto;
}

.zc-creator-contact {
  display: grid;
  gap: .55rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.075);
}

.zc-creator-contact > span {
  color: #8f8998;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.zc-creator-contact a {
  color: #e3d8ff;
  font-size: .8rem;
  font-weight: 700;
}

.zc-creator-contact a:hover {
  color: #fff;
}

@media (max-width: 840px) {
  .zc-community-links .site-container {
    grid-template-columns: 1fr;
  }

  .zc-community-links a:first-child {
    grid-column: auto;
  }

  .public-appeals-layout > aside {
    margin-top: 0;
  }
}


/* postulaciones · cabecera centrada y coherente */

body.public-applications-page .page-hero {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
}

body.public-applications-page .page-hero .site-container {
  display: grid;
  justify-items: center;
  max-width: 920px;
  text-align: center;
}

body.public-applications-page .page-hero .site-eyebrow {
  display: inline-flex;
  justify-content: center;
  margin: 0;
}

body.public-applications-page .page-hero h1 {
  max-width: 850px;
  margin: 1.1rem auto 1rem;
  text-align: center;
  line-height: .95;
}

body.public-applications-page .page-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #bbb6c4;
  font-size: clamp(.95rem, 1.25vw, 1.08rem);
  line-height: 1.7;
  text-align: center;
}

body.public-applications-page .public-account-bar {
  margin-top: 0;
}

@media (max-width: 720px) {
  body.public-applications-page .page-hero {
    padding: 3.2rem 0 2.6rem;
  }

  body.public-applications-page .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  body.public-applications-page .page-hero p {
    max-width: 34rem;
  }
}



/* =======================================================
   NIVELES PÚBLICOS · PERFIL Y LEADERBOARDS
   ======================================================= */

body.public-levels-dashboard {
  background:
    radial-gradient(
      circle at 72% 12%,
      rgba(126, 83, 255, .12),
      transparent 30rem
    ),
    #090a0f;
}

.zc-levels-public-hero {
  padding:
    clamp(3.5rem, 7vw, 6rem)
    0
    clamp(2.5rem, 5vw, 4rem);
}

.zc-levels-public-hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;
  align-items: end;
  gap: 2rem;
}

.zc-levels-public-hero h1 {
  max-width: 820px;
  margin: 1rem 0 1.1rem;
  color: #fff;
  font-size:
    clamp(3.5rem, 6.5vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.065em;
}

.zc-levels-public-hero p {
  max-width: 650px;
  margin: 0;
  color: #b7b2c0;
  font-size: 1.03rem;
  line-height: 1.7;
}

.zc-levels-public-status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem .85rem;
  border: 1px solid
    rgba(84, 222, 199, .16);
  border-radius: 999px;
  color: #a8ebde;
  background:
    rgba(84, 222, 199, .07);
  font-size: .72rem;
  font-weight: 800;
}

.zc-levels-public-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #54dec7;
  box-shadow:
    0 0 14px
    rgba(84, 222, 199, .55);
}

.zc-levels-member-section {
  padding-top: 0;
}

.zc-levels-member-card {
  display: grid;
  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto
    auto;
  align-items: center;
  gap: 1.35rem;
  padding: 1.35rem;
  border: 1px solid
    rgba(164, 123, 255, .18);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(164, 123, 255, .16),
      transparent 22rem
    ),
    linear-gradient(
      145deg,
      rgba(29, 28, 43, .98),
      rgba(13, 14, 21, .98)
    );
  box-shadow:
    0 28px 80px
    rgba(0, 0, 0, .32);
}

.zc-levels-member-avatar {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 1px solid
    rgba(255,255,255,.1);
  border-radius: 20px;
  color: #fff;
  background:
    rgba(164,123,255,.15);
  font-size: 1.5rem;
  font-weight: 900;
}

.zc-levels-member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zc-levels-member-copy {
  display: grid;
  gap: .25rem;
}

.zc-levels-member-copy small,
.zc-levels-member-stat small {
  color: #96909f;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.zc-levels-member-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
}

.zc-levels-member-copy p {
  margin: 0;
  color: #aaa5b2;
  font-size: .78rem;
}

.zc-levels-member-stat {
  display: grid;
  gap: .25rem;
  min-width: 90px;
  padding: .9rem 1rem;
  border: 1px solid
    rgba(255,255,255,.07);
  border-radius: 14px;
  background:
    rgba(255,255,255,.035);
}

.zc-levels-member-stat strong {
  color: #fff;
  font-size: 1.45rem;
}

.zc-levels-member-progress {
  grid-column: 1 / -1;
  display: grid;
  gap: .55rem;
  padding-top: 1rem;
  border-top: 1px solid
    rgba(255,255,255,.07);
}

.zc-levels-member-progress > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #c7c1ce;
  font-size: .72rem;
}

.zc-levels-member-progress b {
  color: #fff;
}

.zc-levels-progress-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background:
    rgba(255,255,255,.055);
}

.zc-levels-progress-value {
  display: block;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      #9d70ff,
      #5fa8ff,
      #54dec7
    );
  box-shadow:
    0 0 18px
    rgba(108, 137, 255, .28);
}

.zc-levels-member-progress > small {
  color: #85808d;
  font-size: .65rem;
}

.zc-levels-login-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem;
  border: 1px solid
    rgba(164,123,255,.15);
  border-radius: 22px;
  background:
    rgba(255,255,255,.025);
}

.zc-levels-login-card > div {
  display: grid;
  gap: .4rem;
}

.zc-levels-login-card small {
  color: #a17dff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.zc-levels-login-card h2 {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
}

.zc-levels-login-card p {
  max-width: 620px;
  margin: 0;
  color: #aaa5b2;
  line-height: 1.6;
}

.zc-levels-rankings-section {
  padding-top: 3rem;
}

.zc-levels-section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.zc-levels-section-heading > span {
  color: #a17dff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.zc-levels-section-heading h2 {
  margin: .8rem 0 .75rem;
  color: #fff;
  font-size:
    clamp(2.4rem, 4vw, 4rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.zc-levels-section-heading p {
  margin: 0;
  color: #aaa5b2;
  line-height: 1.65;
}

.zc-levels-rankings-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.zc-public-leaderboard {
  overflow: hidden;
  border: 1px solid
    rgba(255,255,255,.08);
  border-radius: 22px;
  background:
    linear-gradient(
      150deg,
      rgba(29,30,43,.98),
      rgba(13,14,21,.98)
    );
  box-shadow:
    0 25px 70px
    rgba(0,0,0,.25);
}

.zc-public-leaderboard > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
  border-bottom: 1px solid
    rgba(255,255,255,.065);
}

.zc-public-leaderboard header > div {
  display: grid;
  gap: .2rem;
}

.zc-public-leaderboard header small {
  color: #8d8795;
  font-size: .62rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.zc-public-leaderboard header h2 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
}

.zc-public-leaderboard header > span {
  padding: .35rem .5rem;
  border-radius: 999px;
  color: #d9c8ff;
  background:
    rgba(164,123,255,.1);
  font-size: .6rem;
  font-weight: 800;
}

.zc-public-leaderboard-list {
  display: grid;
}

.zc-public-ranking-row {
  display: grid;
  grid-template-columns:
    24px
    38px
    minmax(0, 1fr)
    auto;
  align-items: center;
  gap: .65rem;
  min-height: 62px;
  padding: .65rem .8rem;
  border-bottom: 1px solid
    rgba(255,255,255,.045);
}

.zc-public-ranking-row:last-child {
  border-bottom: 0;
}

.zc-public-ranking-row.current {
  background:
    linear-gradient(
      90deg,
      rgba(164,123,255,.12),
      transparent
    );
}

.zc-public-ranking-row > b {
  color: #817b89;
  font-size: .68rem;
  text-align: center;
}

.zc-public-ranking-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 11px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.07);
  background: #101118;
  font-size: .72rem;
  font-weight: 900;
}

.zc-public-ranking-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #101118;
}

.zc-public-ranking-row > div {
  display: grid;
  gap: .15rem;
  min-width: 0;
}

.zc-public-ranking-row strong {
  overflow: hidden;
  color: #f3eef7;
  font-size: .74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zc-public-ranking-row small {
  color: #817c88;
  font-size: .6rem;
}

.zc-public-ranking-row em {
  color: #cfc7d8;
  font-size: .68rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.zc-public-ranking-empty {
  padding: 2rem 1rem;
  color: #8f8996;
  font-size: .75rem;
  line-height: 1.55;
  text-align: center;
}

.zc-levels-info-section {
  padding-top: 2rem;
}

.zc-levels-info-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.zc-levels-info-grid article {
  display: grid;
  gap: .45rem;
  padding: 1.2rem;
  border: 1px solid
    rgba(255,255,255,.075);
  border-radius: 18px;
  background:
    rgba(255,255,255,.025);
}

.zc-levels-info-grid small {
  color: #918b98;
  font-size: .64rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.zc-levels-info-grid strong {
  color: #fff;
  font-size: 1.25rem;
}

.zc-levels-info-grid p {
  margin: 0;
  color: #9994a1;
  font-size: .75rem;
  line-height: 1.58;
}

@media (max-width: 1100px) {
  .zc-levels-rankings-grid {
    grid-template-columns: 1fr;
  }

  .zc-public-leaderboard-list {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .zc-public-ranking-row:nth-child(odd) {
    border-right: 1px solid
      rgba(255,255,255,.045);
  }
}

@media (max-width: 760px) {
  .zc-levels-public-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .zc-levels-public-hero h1 {
    font-size:
      clamp(3rem, 14vw, 5rem);
  }

  .zc-levels-member-card {
    grid-template-columns:
      auto
      minmax(0, 1fr);
  }

  .zc-levels-member-stat {
    min-width: 0;
  }

  .zc-levels-login-card {
    display: grid;
  }

  .zc-public-leaderboard-list {
    grid-template-columns: 1fr;
  }

  .zc-public-ranking-row:nth-child(odd) {
    border-right: 0;
  }

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


.zc-level-progress-0 { width: 0%; }
.zc-level-progress-1 { width: 1%; }
.zc-level-progress-2 { width: 2%; }
.zc-level-progress-3 { width: 3%; }
.zc-level-progress-4 { width: 4%; }
.zc-level-progress-5 { width: 5%; }
.zc-level-progress-6 { width: 6%; }
.zc-level-progress-7 { width: 7%; }
.zc-level-progress-8 { width: 8%; }
.zc-level-progress-9 { width: 9%; }
.zc-level-progress-10 { width: 10%; }
.zc-level-progress-11 { width: 11%; }
.zc-level-progress-12 { width: 12%; }
.zc-level-progress-13 { width: 13%; }
.zc-level-progress-14 { width: 14%; }
.zc-level-progress-15 { width: 15%; }
.zc-level-progress-16 { width: 16%; }
.zc-level-progress-17 { width: 17%; }
.zc-level-progress-18 { width: 18%; }
.zc-level-progress-19 { width: 19%; }
.zc-level-progress-20 { width: 20%; }
.zc-level-progress-21 { width: 21%; }
.zc-level-progress-22 { width: 22%; }
.zc-level-progress-23 { width: 23%; }
.zc-level-progress-24 { width: 24%; }
.zc-level-progress-25 { width: 25%; }
.zc-level-progress-26 { width: 26%; }
.zc-level-progress-27 { width: 27%; }
.zc-level-progress-28 { width: 28%; }
.zc-level-progress-29 { width: 29%; }
.zc-level-progress-30 { width: 30%; }
.zc-level-progress-31 { width: 31%; }
.zc-level-progress-32 { width: 32%; }
.zc-level-progress-33 { width: 33%; }
.zc-level-progress-34 { width: 34%; }
.zc-level-progress-35 { width: 35%; }
.zc-level-progress-36 { width: 36%; }
.zc-level-progress-37 { width: 37%; }
.zc-level-progress-38 { width: 38%; }
.zc-level-progress-39 { width: 39%; }
.zc-level-progress-40 { width: 40%; }
.zc-level-progress-41 { width: 41%; }
.zc-level-progress-42 { width: 42%; }
.zc-level-progress-43 { width: 43%; }
.zc-level-progress-44 { width: 44%; }
.zc-level-progress-45 { width: 45%; }
.zc-level-progress-46 { width: 46%; }
.zc-level-progress-47 { width: 47%; }
.zc-level-progress-48 { width: 48%; }
.zc-level-progress-49 { width: 49%; }
.zc-level-progress-50 { width: 50%; }
.zc-level-progress-51 { width: 51%; }
.zc-level-progress-52 { width: 52%; }
.zc-level-progress-53 { width: 53%; }
.zc-level-progress-54 { width: 54%; }
.zc-level-progress-55 { width: 55%; }
.zc-level-progress-56 { width: 56%; }
.zc-level-progress-57 { width: 57%; }
.zc-level-progress-58 { width: 58%; }
.zc-level-progress-59 { width: 59%; }
.zc-level-progress-60 { width: 60%; }
.zc-level-progress-61 { width: 61%; }
.zc-level-progress-62 { width: 62%; }
.zc-level-progress-63 { width: 63%; }
.zc-level-progress-64 { width: 64%; }
.zc-level-progress-65 { width: 65%; }
.zc-level-progress-66 { width: 66%; }
.zc-level-progress-67 { width: 67%; }
.zc-level-progress-68 { width: 68%; }
.zc-level-progress-69 { width: 69%; }
.zc-level-progress-70 { width: 70%; }
.zc-level-progress-71 { width: 71%; }
.zc-level-progress-72 { width: 72%; }
.zc-level-progress-73 { width: 73%; }
.zc-level-progress-74 { width: 74%; }
.zc-level-progress-75 { width: 75%; }
.zc-level-progress-76 { width: 76%; }
.zc-level-progress-77 { width: 77%; }
.zc-level-progress-78 { width: 78%; }
.zc-level-progress-79 { width: 79%; }
.zc-level-progress-80 { width: 80%; }
.zc-level-progress-81 { width: 81%; }
.zc-level-progress-82 { width: 82%; }
.zc-level-progress-83 { width: 83%; }
.zc-level-progress-84 { width: 84%; }
.zc-level-progress-85 { width: 85%; }
.zc-level-progress-86 { width: 86%; }
.zc-level-progress-87 { width: 87%; }
.zc-level-progress-88 { width: 88%; }
.zc-level-progress-89 { width: 89%; }
.zc-level-progress-90 { width: 90%; }
.zc-level-progress-91 { width: 91%; }
.zc-level-progress-92 { width: 92%; }
.zc-level-progress-93 { width: 93%; }
.zc-level-progress-94 { width: 94%; }
.zc-level-progress-95 { width: 95%; }
.zc-level-progress-96 { width: 96%; }
.zc-level-progress-97 { width: 97%; }
.zc-level-progress-98 { width: 98%; }
.zc-level-progress-99 { width: 99%; }
.zc-level-progress-100 { width: 100%; }


/* =======================================================
   NORMAS Y EQUIPO PÚBLICO
   ======================================================= */

body.public-community-rules,
body.public-community-team {
  background:
    radial-gradient(circle at 75% 8%, rgba(135, 90, 255, .1), transparent 32rem),
    #090a0f;
}

.zc-rules-hero,
.zc-team-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}

.zc-rules-hero-grid,
.zc-team-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .55fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 7rem);
}

.zc-rules-hero h1,
.zc-team-hero h1 {
  max-width: 900px;
  margin: 1rem 0 1.2rem;
  color: #fff;
  font-size: clamp(3.6rem, 6.7vw, 7rem);
  line-height: .92;
  letter-spacing: -.067em;
}

.zc-rules-hero p,
.zc-team-hero p {
  max-width: 680px;
  margin: 0;
  color: #b7b2c0;
  font-size: 1.03rem;
  line-height: 1.72;
}

.zc-rules-index {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.09);
}

.zc-rules-index a {
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #aaa5b2;
  font-size: .73rem;
  font-weight: 700;
}

.zc-rules-index a:hover {
  color: #fff;
  padding-left: .35rem;
}

.zc-rules-section {
  scroll-margin-top: 6rem;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.zc-rules-section.alt {
  border-block: 1px solid rgba(255,255,255,.055);
  background:
    radial-gradient(circle at 12% 50%, rgba(68,143,255,.07), transparent 27rem),
    rgba(255,255,255,.014);
}

.zc-rules-section-grid {
  display: grid;
  grid-template-columns: minmax(230px, .38fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.zc-rules-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.zc-rules-section-heading > span {
  color: #a47bff;
  font-family: monospace;
  font-size: .7rem;
}

.zc-rules-section-heading > div {
  display: grid;
  gap: .45rem;
}

.zc-rules-section-heading small {
  color: #8f8997;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.zc-rules-section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 3.5vw, 3.7rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.zc-rules-content {
  display: grid;
  gap: 1.5rem;
}

.zc-rules-lead {
  max-width: 820px;
  margin: 0;
  color: #c4bfcb;
  font-size: 1.05rem;
  line-height: 1.78;
}

.zc-rules-notice,
.zc-rules-warning,
.zc-rules-block,
.zc-rules-two-columns article {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

.zc-rules-notice,
.zc-rules-warning {
  border-color: rgba(164,123,255,.16);
  background: rgba(164,123,255,.06);
}

.zc-rules-notice strong,
.zc-rules-warning strong {
  color: #eee7ff;
}

.zc-rules-notice p,
.zc-rules-warning p {
  margin: .35rem 0 0;
  color: #aaa5b2;
  font-size: .75rem;
  line-height: 1.55;
}

.zc-rules-channel-list,
.zc-rules-channel-grid,
.zc-rules-moderation-grid,
.zc-rules-level-grid,
.zc-rules-social-grid {
  display: grid;
  gap: .8rem;
}

.zc-rules-channel-list,
.zc-rules-moderation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zc-rules-channel-grid,
.zc-rules-level-grid,
.zc-rules-two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.zc-rules-channel-list article,
.zc-rules-channel-grid article,
.zc-rules-moderation-grid article,
.zc-rules-level-grid article {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  background: rgba(255,255,255,.026);
}

.zc-rules-channel-list article,
.zc-rules-channel-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .75rem;
}

.zc-rules-channel-list article > div,
.zc-rules-channel-grid article > div {
  display: grid;
  gap: .25rem;
}

.zc-rules-content h3 {
  margin: .4rem 0 .65rem;
  color: #fff;
}

.zc-rules-content p,
.zc-rules-content li {
  color: #9994a1;
  font-size: .75rem;
  line-height: 1.62;
}

.zc-rules-content ul,
.zc-rules-content ol {
  display: grid;
  gap: .5rem;
  padding-left: 1.2rem;
}

.zc-rules-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.zc-rules-faq {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.08);
}

.zc-rules-faq details {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.zc-rules-faq summary {
  position: relative;
  padding: 1rem 2.5rem 1rem 0;
  color: #f0ebf3;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.zc-rules-faq summary::after {
  content: '+';
  position: absolute;
  right: .3rem;
  color: #a47bff;
  font-size: 1.2rem;
}

.zc-rules-faq details[open] summary::after {
  content: '−';
}

.zc-rules-faq p {
  margin: 0 0 1rem;
}

.zc-rules-level-grid article.master {
  grid-column: 1 / -1;
  border-color: rgba(239,183,93,.18);
  background:
    radial-gradient(circle at 100% 0, rgba(239,183,93,.12), transparent 18rem),
    rgba(255,255,255,.026);
}

.zc-rules-level-grid span {
  color: #efbd6b;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.zc-rules-verification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem;
  border: 1px solid rgba(84,222,199,.15);
  border-radius: 18px;
  background: rgba(84,222,199,.055);
}

.zc-rules-verification > div {
  display: grid;
  gap: .4rem;
}

.zc-rules-verification p {
  margin: 0;
}

.zc-rules-verification > span {
  padding: .45rem .65rem;
  border-radius: 999px;
  color: #a8ebde;
  background: rgba(84,222,199,.09);
  font-size: .64rem;
  font-weight: 800;
  white-space: nowrap;
}

.zc-rules-social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zc-rules-social-grid span {
  padding: .8rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 13px;
  color: #c5c0ca;
  background: rgba(255,255,255,.025);
  font-size: .73rem;
}

.zc-rules-invite {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(164,123,255,.17);
  border-radius: 15px;
  color: #fff;
  background: rgba(164,123,255,.07);
  font-weight: 800;
}

.zc-rules-signature {
  margin: 0;
  color: #817c88;
  font-size: .7rem;
}

/* equipo */

.zc-team-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}

.zc-team-summary article {
  display: grid;
  gap: .3rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

.zc-team-summary strong {
  color: #fff;
  font-size: 1.45rem;
}

.zc-team-summary span {
  color: #8f8996;
  font-size: .66rem;
}

.zc-team-ranks-section {
  padding: 1rem 0 clamp(5rem, 9vw, 8rem);
}

.zc-team-ranks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.zc-team-rank {
  --rank-glow: rgba(164,123,255,.14);
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, var(--rank-glow), transparent 20rem),
    linear-gradient(145deg, rgba(29,30,43,.98), rgba(13,14,21,.98));
}

.zc-team-rank:first-child {
  grid-column: 1 / -1;
}

.zc-team-rank.blue {
  --rank-glow: rgba(88,167,255,.13);
}

.zc-team-rank.teal {
  --rank-glow: rgba(84,222,199,.12);
}

.zc-team-rank.amber {
  --rank-glow: rgba(239,183,93,.12);
}

.zc-team-rank.pink {
  --rank-glow: rgba(239,125,185,.12);
}

.zc-team-rank header {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: .8rem;
}

.zc-team-rank header > span {
  color: #a47bff;
  font-family: monospace;
  font-size: .65rem;
}

.zc-team-rank header > b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(255,255,255,.055);
}

.zc-team-rank header > div {
  display: grid;
  gap: .18rem;
}

.zc-team-rank small {
  color: #8f8997;
  font-size: .61rem;
  text-transform: uppercase;
}

.zc-team-rank h2 {
  margin: 0;
  color: #fff;
}

.zc-team-rank > p {
  margin: 0;
  color: #aaa5b2;
  font-size: .77rem;
  line-height: 1.62;
}

.zc-team-rank ul {
  margin: 0;
  padding: 1rem 0 0 1.1rem;
  border-top: 1px solid rgba(255,255,255,.065);
}

.zc-team-cta {
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.zc-team-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 1px solid rgba(164,123,255,.17);
  border-radius: 26px;
  background:
    radial-gradient(circle at 0 0, rgba(164,123,255,.16), transparent 24rem),
    linear-gradient(145deg, #181621, #0c0d12);
}

.zc-team-cta-box small {
  color: #a47bff;
  text-transform: uppercase;
}

.zc-team-cta-box h2 {
  margin: .65rem 0 .7rem;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: .98;
}

.zc-team-cta-box p {
  max-width: 680px;
  margin: 0;
  color: #aaa5b2;
}

@media (max-width: 980px) {
  .zc-rules-hero-grid,
  .zc-team-hero-grid,
  .zc-rules-section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .zc-rules-channel-list,
  .zc-rules-channel-grid,
  .zc-rules-moderation-grid,
  .zc-rules-level-grid,
  .zc-rules-two-columns,
  .zc-rules-social-grid,
  .zc-team-ranks,
  .zc-team-summary {
    grid-template-columns: 1fr;
  }

  .zc-rules-level-grid article.master,
  .zc-team-rank:first-child {
    grid-column: auto;
  }

  .zc-rules-verification,
  .zc-team-cta-box {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }
}



/* =======================================================
   EQUIPO Y NORMATIVA · AJUSTES FINALES
   ======================================================= */

/* hero de equipo más equilibrado */

body.public-community-team .zc-team-hero {
  padding-top: clamp(3rem, 5vw, 4.8rem);
}

body.public-community-team .zc-team-hero-grid {
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(360px, .75fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

body.public-community-team .zc-team-hero h1 {
  max-width: 760px;
  font-size:
    clamp(4rem, 5.7vw, 6.4rem);
  line-height: .91;
}

body.public-community-team .zc-team-hero p {
  max-width: 700px;
}

body.public-community-team .zc-team-summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: .7rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(155,105,255,.16),
      transparent 18rem
    ),
    linear-gradient(
      145deg,
      rgba(28,27,41,.98),
      rgba(12,13,19,.98)
    );
  box-shadow:
    0 30px 90px rgba(0,0,0,.32);
}

body.public-community-team .zc-team-summary::before {
  content: 'Estructura de moderación';
  padding: .4rem .45rem .85rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #9b95a4;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.public-community-team .zc-team-summary article {
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 82px;
  padding: 1rem 1.1rem;
}

body.public-community-team .zc-team-summary strong {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

body.public-community-team .zc-team-summary span {
  max-width: 170px;
  color: #aaa4b1;
  font-size: .72rem;
  line-height: 1.45;
}

/* icono y título centrados en todas las tarjetas */

.zc-team-rank header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding-inline: 3rem;
  text-align: left;
}

.zc-team-rank header > span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.zc-team-rank header > b {
  flex: 0 0 42px;
}

.zc-team-rank header > div {
  flex: 0 1 auto;
  min-width: 0;
}

.zc-team-rank h2 {
  line-height: 1.05;
}

/* normativa detallada */

.zc-rules-detailed-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.zc-rules-detail-card {
  --rule-accent: #a47bff;
  --rule-glow: rgba(164,123,255,.11);

  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 100% 0,
      var(--rule-glow),
      transparent 19rem
    ),
    rgba(255,255,255,.022);
}

.zc-rules-detail-card.text {
  --rule-accent: #65a7ff;
  --rule-glow: rgba(101,167,255,.1);
}

.zc-rules-detail-card.voice {
  --rule-accent: #54dec7;
  --rule-glow: rgba(84,222,199,.1);
}

.zc-rules-detail-card.ban {
  --rule-accent: #f2798e;
  --rule-glow: rgba(242,121,142,.1);
}

.zc-rules-detail-card header {
  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr);
  align-items: center;
  gap: .8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.065);
}

.zc-rules-detail-card header > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid color-mix(
    in srgb,
    var(--rule-accent) 30%,
    transparent
  );
  border-radius: 12px;
  color: var(--rule-accent);
  background: rgba(255,255,255,.035);
  font-family: monospace;
  font-size: .65rem;
  font-weight: 900;
}

.zc-rules-detail-card header > div {
  display: grid;
  gap: .2rem;
}

.zc-rules-detail-card header small {
  color: #8e8996;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.zc-rules-detail-card header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
}

.zc-rules-detail-card ul {
  display: grid;
  gap: .72rem;
  margin: 0;
  padding-left: 1.15rem;
}

.zc-rules-detail-card li {
  padding-left: .15rem;
  color: #aaa5b1;
  font-size: .74rem;
  line-height: 1.58;
}

.zc-rules-detail-card li::marker {
  color: var(--rule-accent);
}

.zc-rules-legal-links {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.zc-rules-legal-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 15px;
  color: #d4ceda;
  background: rgba(255,255,255,.025);
  font-size: .76rem;
  font-weight: 800;
  transition:
    transform .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.zc-rules-legal-links a:hover {
  color: #fff;
  border-color: rgba(164,123,255,.24);
  transform: translateY(-2px);
}

/* enlaces reales */

.zc-rules-social-grid {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
}

.zc-rules-social-grid a {
  display: grid;
  grid-template-columns:
    42px minmax(0, 1fr) auto;
  align-items: center;
  gap: .8rem;
  min-height: 76px;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  color: inherit;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(164,123,255,.08),
      transparent 11rem
    ),
    rgba(255,255,255,.024);
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.zc-rules-social-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(164,123,255,.24);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(164,123,255,.14),
      transparent 11rem
    ),
    rgba(255,255,255,.035);
}

.zc-rules-social-grid a > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 13px;
  color: #fff;
  background: #101118;
  font-size: 1rem;
  font-weight: 900;
}

.zc-rules-social-grid a > div {
  display: grid;
  gap: .2rem;
}

.zc-rules-social-grid strong {
  color: #f5f1f8;
  font-size: .78rem;
}

.zc-rules-social-grid small {
  color: #8f8997;
  font-size: .65rem;
}

.zc-rules-social-grid a > b {
  color: #a47bff;
  font-size: .8rem;
}

@media (max-width: 980px) {
  body.public-community-team .zc-team-hero-grid {
    grid-template-columns: 1fr;
  }

  body.public-community-team .zc-team-summary {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .zc-rules-detailed-grid,
  .zc-rules-legal-links,
  .zc-rules-social-grid {
    grid-template-columns: 1fr;
  }

  .zc-team-rank header {
    justify-content: flex-start;
    padding-right: 0;
  }

  body.public-community-team .zc-team-summary {
    width: 100%;
  }
}


/* =======================================================
   REDES · CORRECCIÓN FINAL DE TARJETAS
   ======================================================= */

body.public-community-rules
.zc-rules-social-grid {
  display: grid !important;
  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;
  gap: .85rem !important;
}

body.public-community-rules
.zc-rules-social-grid > a {
  display: grid !important;
  grid-template-columns:
    44px minmax(0, 1fr) auto !important;
  grid-template-rows: 1fr !important;
  align-items: center !important;
  gap: .85rem !important;

  min-width: 0 !important;
  min-height: 82px !important;
  padding: .9rem 1rem !important;

  border: 1px solid
    rgba(255, 255, 255, .08) !important;
  border-radius: 17px !important;

  color: inherit !important;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(164, 123, 255, .11),
      transparent 12rem
    ),
    rgba(255, 255, 255, .026) !important;

  text-decoration: none !important;
  overflow: hidden !important;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease !important;
}

body.public-community-rules
.zc-rules-social-grid > a:hover {
  transform: translateY(-3px) !important;
  border-color:
    rgba(164, 123, 255, .28) !important;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(164, 123, 255, .18),
      transparent 12rem
    ),
    rgba(255, 255, 255, .04) !important;
}

body.public-community-rules
.zc-rules-social-grid > a > span {
  display: grid !important;
  place-items: center !important;

  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;

  border: 1px solid
    rgba(255, 255, 255, .08) !important;
  border-radius: 13px !important;

  color: #fff !important;
  background: #101118 !important;

  font-size: 1rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body.public-community-rules
.zc-rules-social-grid > a > div {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: .22rem !important;
  min-width: 0 !important;
}

body.public-community-rules
.zc-rules-social-grid > a strong {
  display: block !important;
  overflow: hidden !important;

  margin: 0 !important;
  color: #f5f1f8 !important;

  font-size: .8rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;

  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.public-community-rules
.zc-rules-social-grid > a small {
  display: block !important;
  overflow: hidden !important;

  margin: 0 !important;
  color: #8f8997 !important;

  font-size: .66rem !important;
  line-height: 1.3 !important;

  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.public-community-rules
.zc-rules-social-grid > a > b {
  display: grid !important;
  place-items: center !important;

  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;

  border-radius: 50% !important;
  color: #b590ff !important;
  background:
    rgba(164, 123, 255, .08) !important;

  font-size: .75rem !important;
  line-height: 1 !important;
}

body.public-community-rules
.zc-rules-invite {
  min-height: 66px !important;
  align-items: center !important;
  margin-top: .25rem !important;
}

@media (max-width: 760px) {
  body.public-community-rules
  .zc-rules-social-grid {
    grid-template-columns: 1fr !important;
  }

  body.public-community-rules
  .zc-rules-social-grid > a {
    min-height: 76px !important;
  }
}



/* =======================================================
   ASISTENTE · DASHBOARD DE CONFIGURACIÓN
   ======================================================= */

body.zc-config-dashboard-page {
  background:
    radial-gradient(
      circle at 77% 8%,
      rgba(138, 92, 255, .13),
      transparent 34rem
    ),
    #090a0f;
}

.zc-config-hero {
  padding:
    clamp(3rem, 6vw, 5.5rem)
    0
    clamp(2.5rem, 5vw, 4rem);
}

.zc-config-hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, .62fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.zc-config-server {
  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr);
  align-items: center;
  gap: 1.3rem;
}

.zc-config-server-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  overflow: hidden;
  border: 1px solid
    rgba(255,255,255,.09);
  border-radius: 24px;
  color: #fff;
  background: #11121a;
  font-size: 1.7rem;
  font-weight: 900;
}

.zc-config-server-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zc-config-server > div {
  display: grid;
  gap: .45rem;
}

.zc-config-server small {
  color: #a47bff;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.zc-config-server h1 {
  margin: 0;
  color: #fff;
  font-size:
    clamp(3.2rem, 5.6vw, 6rem);
  line-height: .92;
  letter-spacing: -.06em;
}

.zc-config-server p {
  max-width: 620px;
  margin: 0;
  color: #aaa5b2;
  line-height: 1.65;
}

.zc-config-progress-card {
  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid
    rgba(164,123,255,.17);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(164,123,255,.16),
      transparent 18rem
    ),
    rgba(255,255,255,.028);
}

.zc-config-progress-ring {
  --config-progress: 0deg;

  position: relative;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background:
    conic-gradient(
      #9e72ff
      var(--config-progress),
      rgba(255,255,255,.07)
      0
    );
}

.zc-config-progress-ring::after {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  background: #11121a;
}

.zc-config-progress-ring strong,
.zc-config-progress-ring span {
  position: relative;
  z-index: 1;
}

.zc-config-progress-ring strong {
  align-self: end;
  color: #fff;
  font-size: 1.45rem;
}

.zc-config-progress-ring span {
  align-self: start;
  color: #898391;
  font-size: .59rem;
}

.zc-config-progress-card > div:last-child {
  display: grid;
  gap: .35rem;
}

.zc-config-progress-card small {
  color: #8e8996;
  font-size: .64rem;
  text-transform: uppercase;
}

.zc-config-progress-card > div:last-child > strong {
  color: #fff;
  font-size: 1.05rem;
}

.zc-config-progress-card p {
  margin: 0;
  color: #9993a1;
  font-size: .72rem;
}

.zc-config-overview {
  padding-bottom: 3rem;
}

.zc-config-metrics {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.zc-config-metrics article {
  display: grid;
  gap: .3rem;
  padding: 1rem;
  border: 1px solid
    rgba(255,255,255,.075);
  border-radius: 16px;
  background:
    rgba(255,255,255,.025);
}

.zc-config-metrics small,
.zc-config-card small,
.zc-config-sidebar article > small {
  color: #8f8997;
  font-size: .62rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.zc-config-metrics strong {
  color: #fff;
  font-size: 1.25rem;
}

.zc-config-metrics span {
  color: #8e8996;
  font-size: .67rem;
}

.zc-config-content {
  padding-bottom:
    clamp(5rem, 9vw, 8rem);
}

.zc-config-content-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, .32fr);
  align-items: start;
  gap: 1rem;
}

.zc-config-main {
  display: grid;
  gap: 1.5rem;
}

.zc-config-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.zc-config-section-heading > div {
  display: grid;
  gap: .55rem;
}

.zc-config-section-heading span {
  color: #a47bff;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.zc-config-section-heading h2 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size:
    clamp(2.4rem, 4vw, 4.1rem);
  line-height: .97;
  letter-spacing: -.05em;
}

.zc-config-section-heading > small {
  max-width: 280px;
  color: #8f8997;
  line-height: 1.5;
  text-align: right;
}

.zc-config-cards {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.zc-config-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid
    rgba(255,255,255,.08);
  border-radius: 21px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(164,123,255,.09),
      transparent 16rem
    ),
    linear-gradient(
      145deg,
      rgba(28,29,41,.98),
      rgba(13,14,20,.98)
    );
}

.zc-config-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.zc-config-card > header > div {
  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr);
  align-items: center;
  gap: .7rem;
}

.zc-config-card header > div > span {
  color: #a47bff;
  font-family: monospace;
  font-size: .65rem;
}

.zc-config-card header > div > div {
  display: grid;
  gap: .18rem;
}

.zc-config-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
}

.zc-config-card > p {
  margin: 0;
  color: #9994a1;
  font-size: .74rem;
  line-height: 1.6;
}

.zc-config-state {
  padding: .4rem .55rem;
  border-radius: 999px;
  font-size: .59rem;
  font-weight: 800;
}

.zc-config-state.ready {
  color: #a8ebde;
  background:
    rgba(84,222,199,.09);
}

.zc-config-state.pending {
  color: #efc87e;
  background:
    rgba(239,183,93,.09);
}

.zc-config-field-list,
.zc-config-module-list {
  display: grid;
  border-top: 1px solid
    rgba(255,255,255,.065);
}

.zc-config-field-list > div,
.zc-config-module-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  border-bottom: 1px solid
    rgba(255,255,255,.05);
}

.zc-config-field-list span,
.zc-config-module-list span {
  color: #a6a0ad;
  font-size: .7rem;
  text-transform: capitalize;
}

.zc-config-field-list strong,
.zc-config-module-list strong {
  font-size: .64rem;
}

.zc-config-field-list strong.ready,
.zc-config-module-list strong.ready {
  color: #7edfcf;
}

.zc-config-field-list strong.pending {
  color: #dfb56e;
}

.zc-config-module-list strong.inactive {
  color: #817b88;
}

.zc-config-disabled-action {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-top: auto;
  padding: .75rem .85rem;
  border: 1px solid
    rgba(255,255,255,.07);
  border-radius: 12px;
  color: #77717e;
  background:
    rgba(255,255,255,.025);
  font: inherit;
  font-size: .7rem;
  cursor: not-allowed;
}

.zc-config-disabled-action span {
  color: #615c67;
  font-size: .59rem;
}

.zc-config-level-summary {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: .65rem;
}

.zc-config-level-summary article {
  display: grid;
  gap: .25rem;
  padding: .75rem;
  border: 1px solid
    rgba(255,255,255,.065);
  border-radius: 12px;
  background:
    rgba(255,255,255,.025);
}

.zc-config-level-summary strong {
  color: #fff;
  font-size: 1rem;
}

.zc-config-empty-block,
.zc-config-empty-row {
  color: #817b88;
  font-size: .7rem;
  line-height: 1.55;
}

.zc-config-sidebar {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
}

.zc-config-sidebar article {
  display: grid;
  gap: .8rem;
  padding: 1.1rem;
  border: 1px solid
    rgba(255,255,255,.075);
  border-radius: 18px;
  background:
    rgba(255,255,255,.025);
}

.zc-config-sidebar h2,
.zc-config-sidebar h3 {
  margin: 0;
  color: #fff;
}

.zc-config-pending-card > div {
  display: grid;
}

.zc-config-pending-card > div > span {
  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .55rem;
  min-height: 38px;
  border-top: 1px solid
    rgba(255,255,255,.055);
}

.zc-config-pending-card i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #efb75d;
}

.zc-config-pending-card b {
  color: #c8c2cc;
  font-size: .68rem;
}

.zc-config-pending-card span small {
  color: #77717e;
  font-size: .58rem;
}

.zc-config-access-card p {
  margin: 0;
  color: #96909e;
  font-size: .7rem;
  line-height: 1.58;
}

.zc-config-access-card > span {
  color: #817b88;
  font-size: .64rem;
}

.zc-config-access-card > span strong {
  color: #d6d0dc;
}

.zc-config-system-card > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 36px;
  padding-top: .6rem;
  border-top: 1px solid
    rgba(255,255,255,.055);
  font-size: .67rem;
}

.zc-config-system-card span {
  color: #8f8997;
}

.zc-config-system-card strong {
  color: #c8c2ce;
}

@media (max-width: 1050px) {
  .zc-config-hero-grid,
  .zc-config-content-grid {
    grid-template-columns: 1fr;
  }

  .zc-config-progress-card {
    max-width: 620px;
  }

  .zc-config-sidebar {
    position: static;
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .zc-config-server {
    grid-template-columns: 1fr;
  }

  .zc-config-progress-card {
    grid-template-columns: 1fr;
  }

  .zc-config-metrics,
  .zc-config-cards,
  .zc-config-sidebar {
    grid-template-columns: 1fr;
  }

  .zc-config-section-heading {
    display: grid;
  }

  .zc-config-section-heading > small {
    text-align: left;
  }
}


.zc-config-progress-ring.progress-0 { --config-progress: 0.0deg; }
.zc-config-progress-ring.progress-1 { --config-progress: 3.6deg; }
.zc-config-progress-ring.progress-2 { --config-progress: 7.2deg; }
.zc-config-progress-ring.progress-3 { --config-progress: 10.8deg; }
.zc-config-progress-ring.progress-4 { --config-progress: 14.4deg; }
.zc-config-progress-ring.progress-5 { --config-progress: 18.0deg; }
.zc-config-progress-ring.progress-6 { --config-progress: 21.6deg; }
.zc-config-progress-ring.progress-7 { --config-progress: 25.2deg; }
.zc-config-progress-ring.progress-8 { --config-progress: 28.8deg; }
.zc-config-progress-ring.progress-9 { --config-progress: 32.4deg; }
.zc-config-progress-ring.progress-10 { --config-progress: 36.0deg; }
.zc-config-progress-ring.progress-11 { --config-progress: 39.6deg; }
.zc-config-progress-ring.progress-12 { --config-progress: 43.2deg; }
.zc-config-progress-ring.progress-13 { --config-progress: 46.800000000000004deg; }
.zc-config-progress-ring.progress-14 { --config-progress: 50.4deg; }
.zc-config-progress-ring.progress-15 { --config-progress: 54.0deg; }
.zc-config-progress-ring.progress-16 { --config-progress: 57.6deg; }
.zc-config-progress-ring.progress-17 { --config-progress: 61.2deg; }
.zc-config-progress-ring.progress-18 { --config-progress: 64.8deg; }
.zc-config-progress-ring.progress-19 { --config-progress: 68.4deg; }
.zc-config-progress-ring.progress-20 { --config-progress: 72.0deg; }
.zc-config-progress-ring.progress-21 { --config-progress: 75.60000000000001deg; }
.zc-config-progress-ring.progress-22 { --config-progress: 79.2deg; }
.zc-config-progress-ring.progress-23 { --config-progress: 82.8deg; }
.zc-config-progress-ring.progress-24 { --config-progress: 86.4deg; }
.zc-config-progress-ring.progress-25 { --config-progress: 90.0deg; }
.zc-config-progress-ring.progress-26 { --config-progress: 93.60000000000001deg; }
.zc-config-progress-ring.progress-27 { --config-progress: 97.2deg; }
.zc-config-progress-ring.progress-28 { --config-progress: 100.8deg; }
.zc-config-progress-ring.progress-29 { --config-progress: 104.4deg; }
.zc-config-progress-ring.progress-30 { --config-progress: 108.0deg; }
.zc-config-progress-ring.progress-31 { --config-progress: 111.60000000000001deg; }
.zc-config-progress-ring.progress-32 { --config-progress: 115.2deg; }
.zc-config-progress-ring.progress-33 { --config-progress: 118.8deg; }
.zc-config-progress-ring.progress-34 { --config-progress: 122.4deg; }
.zc-config-progress-ring.progress-35 { --config-progress: 126.0deg; }
.zc-config-progress-ring.progress-36 { --config-progress: 129.6deg; }
.zc-config-progress-ring.progress-37 { --config-progress: 133.20000000000002deg; }
.zc-config-progress-ring.progress-38 { --config-progress: 136.8deg; }
.zc-config-progress-ring.progress-39 { --config-progress: 140.4deg; }
.zc-config-progress-ring.progress-40 { --config-progress: 144.0deg; }
.zc-config-progress-ring.progress-41 { --config-progress: 147.6deg; }
.zc-config-progress-ring.progress-42 { --config-progress: 151.20000000000002deg; }
.zc-config-progress-ring.progress-43 { --config-progress: 154.8deg; }
.zc-config-progress-ring.progress-44 { --config-progress: 158.4deg; }
.zc-config-progress-ring.progress-45 { --config-progress: 162.0deg; }
.zc-config-progress-ring.progress-46 { --config-progress: 165.6deg; }
.zc-config-progress-ring.progress-47 { --config-progress: 169.20000000000002deg; }
.zc-config-progress-ring.progress-48 { --config-progress: 172.8deg; }
.zc-config-progress-ring.progress-49 { --config-progress: 176.4deg; }
.zc-config-progress-ring.progress-50 { --config-progress: 180.0deg; }
.zc-config-progress-ring.progress-51 { --config-progress: 183.6deg; }
.zc-config-progress-ring.progress-52 { --config-progress: 187.20000000000002deg; }
.zc-config-progress-ring.progress-53 { --config-progress: 190.8deg; }
.zc-config-progress-ring.progress-54 { --config-progress: 194.4deg; }
.zc-config-progress-ring.progress-55 { --config-progress: 198.0deg; }
.zc-config-progress-ring.progress-56 { --config-progress: 201.6deg; }
.zc-config-progress-ring.progress-57 { --config-progress: 205.20000000000002deg; }
.zc-config-progress-ring.progress-58 { --config-progress: 208.8deg; }
.zc-config-progress-ring.progress-59 { --config-progress: 212.4deg; }
.zc-config-progress-ring.progress-60 { --config-progress: 216.0deg; }
.zc-config-progress-ring.progress-61 { --config-progress: 219.6deg; }
.zc-config-progress-ring.progress-62 { --config-progress: 223.20000000000002deg; }
.zc-config-progress-ring.progress-63 { --config-progress: 226.8deg; }
.zc-config-progress-ring.progress-64 { --config-progress: 230.4deg; }
.zc-config-progress-ring.progress-65 { --config-progress: 234.0deg; }
.zc-config-progress-ring.progress-66 { --config-progress: 237.6deg; }
.zc-config-progress-ring.progress-67 { --config-progress: 241.20000000000002deg; }
.zc-config-progress-ring.progress-68 { --config-progress: 244.8deg; }
.zc-config-progress-ring.progress-69 { --config-progress: 248.4deg; }
.zc-config-progress-ring.progress-70 { --config-progress: 252.0deg; }
.zc-config-progress-ring.progress-71 { --config-progress: 255.6deg; }
.zc-config-progress-ring.progress-72 { --config-progress: 259.2deg; }
.zc-config-progress-ring.progress-73 { --config-progress: 262.8deg; }
.zc-config-progress-ring.progress-74 { --config-progress: 266.40000000000003deg; }
.zc-config-progress-ring.progress-75 { --config-progress: 270.0deg; }
.zc-config-progress-ring.progress-76 { --config-progress: 273.6deg; }
.zc-config-progress-ring.progress-77 { --config-progress: 277.2deg; }
.zc-config-progress-ring.progress-78 { --config-progress: 280.8deg; }
.zc-config-progress-ring.progress-79 { --config-progress: 284.40000000000003deg; }
.zc-config-progress-ring.progress-80 { --config-progress: 288.0deg; }
.zc-config-progress-ring.progress-81 { --config-progress: 291.6deg; }
.zc-config-progress-ring.progress-82 { --config-progress: 295.2deg; }
.zc-config-progress-ring.progress-83 { --config-progress: 298.8deg; }
.zc-config-progress-ring.progress-84 { --config-progress: 302.40000000000003deg; }
.zc-config-progress-ring.progress-85 { --config-progress: 306.0deg; }
.zc-config-progress-ring.progress-86 { --config-progress: 309.6deg; }
.zc-config-progress-ring.progress-87 { --config-progress: 313.2deg; }
.zc-config-progress-ring.progress-88 { --config-progress: 316.8deg; }
.zc-config-progress-ring.progress-89 { --config-progress: 320.40000000000003deg; }
.zc-config-progress-ring.progress-90 { --config-progress: 324.0deg; }
.zc-config-progress-ring.progress-91 { --config-progress: 327.6deg; }
.zc-config-progress-ring.progress-92 { --config-progress: 331.2deg; }
.zc-config-progress-ring.progress-93 { --config-progress: 334.8deg; }
.zc-config-progress-ring.progress-94 { --config-progress: 338.40000000000003deg; }
.zc-config-progress-ring.progress-95 { --config-progress: 342.0deg; }
.zc-config-progress-ring.progress-96 { --config-progress: 345.6deg; }
.zc-config-progress-ring.progress-97 { --config-progress: 349.2deg; }
.zc-config-progress-ring.progress-98 { --config-progress: 352.8deg; }
.zc-config-progress-ring.progress-99 { --config-progress: 356.40000000000003deg; }
.zc-config-progress-ring.progress-100 { --config-progress: 360.0deg; }

/* =========================================================
   PERFIL PÚBLICO DE LA CREADORA — 2026-07
   ========================================================= */

.zc-creator-page {
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(129, 87, 255, 0.18),
      transparent 34rem
    ),
    radial-gradient(
      circle at 86% 78%,
      rgba(86, 48, 198, 0.12),
      transparent 30rem
    ),
    #08090d;
}

.zc-creator-page .zc-creator-profile {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 7.5rem 0 8rem;
  overflow: hidden;
}

.zc-creator-page .zc-creator-profile::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );
  background-size: 72px 72px;
  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 90%
    );
}

.zc-creator-page .zc-creator-profile-grid {
  position: relative;
  z-index: 1;
  grid-template-columns:
    minmax(330px, 420px)
    minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.zc-creator-page .zc-creator-card {
  position: relative;
  gap: 1.15rem;
  padding: 1.4rem;
  overflow: hidden;
  border:
    1px solid
    rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(28, 29, 38, 0.94),
      rgba(12, 13, 18, 0.97)
    );
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.52),
    inset 0 1px rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(24px);
}

.zc-creator-page .zc-creator-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    rgba(135, 92, 255, 0.19);
  filter: blur(55px);
  pointer-events: none;
}

.zc-creator-page .zc-creator-card-top {
  position: relative;
  align-items: center;
  gap: 1.2rem;
  padding: 0.3rem;
}

.zc-creator-page
.zc-creator-avatar-wrap.large {
  width: 108px;
  height: 108px;
  flex: 0 0 108px;
}

.zc-creator-page
.zc-creator-avatar-wrap.large
.zc-creator-avatar {
  border:
    1px solid
    rgba(255, 255, 255, 0.15);
  border-radius: 29px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.zc-creator-page .zc-presence-dot {
  right: -3px;
  bottom: -3px;
  width: 21px;
  height: 21px;
  border:
    4px solid
    #111219;
  box-shadow:
    0 0 20px
    rgba(255, 255, 255, 0.17);
}

.zc-creator-page .zc-creator-card-top small {
  color: #9981ed;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.zc-creator-page .zc-creator-card-top h1 {
  margin: 0.35rem 0 0.12rem;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1;
}

.zc-creator-page .zc-creator-card-top p {
  color: #9b98a7;
  font-size: 0.9rem;
}

.zc-creator-page .zc-creator-live {
  position: relative;
  padding: 1rem 1.05rem;
  border:
    1px solid
    rgba(255, 255, 255, 0.075);
  border-radius: 17px;
  background:
    rgba(255, 255, 255, 0.027);
}

.zc-creator-page .zc-creator-live span {
  color: #dad7e4;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.zc-creator-page .zc-creator-live p {
  margin-top: 0.45rem;
  color: #777482;
}

.zc-creator-page .zc-spotify-card {
  border-radius: 17px;
}

.zc-creator-page .zc-creator-actions {
  gap: 0.7rem;
}

.zc-creator-page .zc-creator-actions .zc-button {
  min-height: 46px;
  border-radius: 13px;
}

.zc-creator-page .zc-creator-contact {
  padding-top: 1.1rem;
  border-top:
    1px solid
    rgba(255, 255, 255, 0.075);
}

.zc-creator-page .zc-creator-story {
  padding: 0;
}

.zc-creator-page .zc-creator-story > span {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  border:
    1px solid
    rgba(151, 113, 255, 0.26);
  border-radius: 999px;
  background:
    rgba(123, 80, 236, 0.08);
  color: #a98cff;
  letter-spacing: 0.12em;
}

.zc-creator-page .zc-creator-story h2 {
  max-width: 870px;
  margin: 1.5rem 0 1.6rem;
  color: #ffffff;
  font-size:
    clamp(3.2rem, 6vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.068em;
}

.zc-creator-page .zc-creator-story > p {
  max-width: 760px;
  color: #aaa7b4;
  font-size: 1.08rem;
  line-height: 1.82;
}

.zc-creator-page .zc-creator-facts {
  gap: 0.8rem;
  margin-top: 2.8rem;
  border-top: 0;
}

.zc-creator-page .zc-creator-facts article {
  min-height: 132px;
  padding: 1.2rem;
  border:
    1px solid
    rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.032),
      rgba(255, 255, 255, 0.012)
    );
}

.zc-creator-page
.zc-creator-facts article:first-child {
  padding-left: 1.2rem;
}

.zc-creator-page
.zc-creator-facts article:last-child {
  border-right:
    1px solid
    rgba(255, 255, 255, 0.075);
}

.zc-creator-page .zc-creator-facts strong {
  color: #f7f6fb;
  font-size: 1.35rem;
}

.zc-creator-page .zc-creator-facts span {
  color: #777482;
}

@media (max-width: 1000px) {
  .zc-creator-page .zc-creator-profile {
    padding-top: 5rem;
  }

  .zc-creator-page .zc-creator-profile-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .zc-creator-page .zc-creator-card {
    max-width: 580px;
  }
}

@media (max-width: 680px) {
  .zc-creator-page .zc-creator-profile {
    padding: 3.5rem 0 5rem;
  }

  .zc-creator-page .zc-creator-card {
    padding: 1rem;
    border-radius: 21px;
  }

  .zc-creator-page .zc-creator-card-top {
    align-items: flex-start;
  }

  .zc-creator-page
  .zc-creator-avatar-wrap.large {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }

  .zc-creator-page .zc-creator-card-top h1 {
    font-size: 1.8rem;
  }

  .zc-creator-page .zc-creator-story h2 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .zc-creator-page .zc-creator-actions,
  .zc-creator-page .zc-creator-facts {
    grid-template-columns: 1fr;
  }

  .zc-creator-page .zc-creator-facts article {
    min-height: 105px;
  }
}

/* Ajustes de proporción en la página de creadora */

.zc-creator-page .zc-creator-profile {
  padding: 5.5rem 0 6rem;
}

.zc-creator-page .zc-creator-profile-grid {
  grid-template-columns:
    minmax(340px, 390px)
    minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}

.zc-creator-page .zc-creator-story h2 {
  max-width: 760px;
  margin: 1.35rem 0 1.35rem;
  font-size: clamp(2.9rem, 4.7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.zc-creator-page .zc-creator-story > p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.7;
}

.zc-creator-page .zc-creator-facts {
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.zc-creator-page .zc-creator-facts article {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.zc-creator-page .zc-creator-facts strong,
.zc-creator-page .zc-creator-facts span {
  width: 100%;
  text-align: center;
}

.zc-creator-page .zc-creator-facts strong {
  font-size: 1.15rem;
}

.zc-creator-page .zc-creator-facts span {
  margin-top: 0.35rem;
  line-height: 1.4;
}

@media (max-width: 1000px) {
  .zc-creator-page .zc-creator-profile-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .zc-creator-page .zc-creator-story h2 {
    max-width: 820px;
  }
}

@media (max-width: 680px) {
  .zc-creator-page .zc-creator-profile {
    padding: 3rem 0 4.5rem;
  }

  .zc-creator-page .zc-creator-story h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .zc-creator-page .zc-creator-facts article {
    min-height: 96px;
  }
}
/* =========================================================
   AJUSTE FINAL DEL PERFIL DE LA CREADORA
   ========================================================= */

.zc-creator-page .zc-creator-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 620px;
  margin-top: 1.75rem;
}

.zc-creator-page .zc-creator-facts article {
  min-height: 76px;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
}

.zc-creator-page .zc-creator-facts strong {
  font-size: 1rem;
  line-height: 1.2;
}

.zc-creator-page .zc-creator-facts span {
  margin-top: 0.22rem;
  font-size: 0.64rem;
  line-height: 1.35;
}

.zc-creator-page .zc-creator-card {
  max-width: 390px;
  padding: 1.25rem;
}

.zc-creator-page .zc-creator-live {
  padding: 0.85rem 0.95rem;
}

.zc-creator-page .zc-creator-contact {
  gap: 0.35rem;
  font-size: 0.72rem;
}

.zc-creator-page .zc-creator-story h2 {
  max-width: 700px;
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
}

.zc-creator-page .zc-creator-story > p {
  max-width: 700px;
  font-size: 0.94rem;
}

.zc-creator-page .zc-creator-profile-grid {
  grid-template-columns:
    minmax(320px, 390px)
    minmax(0, 1fr);
  gap: clamp(3rem, 5vw, 5rem);
}

@media (max-width: 1000px) {
  .zc-creator-page .zc-creator-profile-grid {
    grid-template-columns: 1fr;
  }

  .zc-creator-page .zc-creator-facts {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .zc-creator-page .zc-creator-facts {
    grid-template-columns: 1fr;
  }

  .zc-creator-page .zc-creator-facts article {
    min-height: 68px;
  }
}
