.about-notes__kicker {
  margin: 0 0 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
}

.about-notes__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(234, 90, 91, 0.92), rgba(162, 75, 94, 0.96));
}

.page-hero__inner {
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2vw, 1.75rem) clamp(1rem, 1.6vw, 1.25rem);
}

.page-hero__title {
  color: #fff4f1;
}

.page-hero__title-accent {
  background: none;
  color: var(--bg);
  -webkit-text-fill-color: var(--bg);
}

.about-origin {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(ellipse 42% 28% at 12% 18%, rgba(234, 90, 91, 0.1), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%),
    var(--bg);
}

.about-origin .lore__layout {
  display: block;
  max-width: 1280px;
}

.about-origin .lore__intro {
  position: relative;
  padding: 0;
  margin-bottom: 1.8rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.about-origin .lore__title {
  max-width: 16ch;
}

.about-origin .lore__lead {
  max-width: 58rem;
}

.about-origin .lore__more {
  max-width: 48rem;
  color: var(--text-muted);
}

.about-notes {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: transparent;
}

.about-notes__head {
  max-width: 1280px;
  margin: 0 auto 1.6rem;
}

.about-notes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.about-notes .lore-node {
  min-height: 100%;
  padding: 1.2rem 1.25rem 1.3rem;
  border: 1px solid rgba(234, 90, 91, 0.24);
  border-top: 4px solid var(--coral);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 35%),
    rgba(16, 12, 18, 0.38);
  backdrop-filter: blur(6px);
  box-shadow: none;
  transform: none;
}

.about-notes .lore-node--flip {
  border-right: 1px solid rgba(234, 90, 91, 0.24);
  box-shadow: none;
  transform: none;
}

.about-notes .lore-node:nth-child(2) {
  transform: translateY(1.2rem);
}

.about-notes .lore-node__year {
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.5rem;
  color: var(--bg);
  background: var(--coral);
}

.about-notes .lore-node__text {
  line-height: 1.6;
}

.collab {
  position: relative;
  z-index: 1;
  padding: 5.5rem 4vw;
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(162, 75, 94, 0.1), transparent),
    linear-gradient(135deg, rgba(234, 90, 91, 0.045), transparent 42%),
    var(--bg);
}

.collab__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.2rem;
}

.collab-card {
  --folder-accent: var(--coral);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0.82rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 26%),
    var(--bg-elevated);
  border: 1px solid rgba(234, 90, 91, 0.32);
  border-radius: 0;
  box-shadow:
    9px 11px 0 rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotate(-0.4deg);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.collab-card::before {
  content: "FILE";
  position: absolute;
  left: -1px;
  top: -1.05rem;
  width: 7.25rem;
  height: 1.25rem;
  padding: 0.38rem 1rem 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--bg);
  background: var(--folder-accent);
  border-radius: 0;
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.collab-card::after {
  content: "";
  position: absolute;
  inset: 0.82rem;
  pointer-events: none;
  border: 1px dashed rgba(234, 90, 91, 0.22);
  border-radius: 0;
}

.collab-card:nth-child(even) {
  transform: rotate(0.35deg);
}

.collab-card:hover {
  border-color: rgba(234, 90, 91, 0.55);
  transform: rotate(0deg) translateY(-7px);
  box-shadow:
    12px 15px 0 rgba(234, 90, 91, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.collab-card__photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(234, 90, 91, 0.3);
  border-radius: 0;
  background: var(--bg);
}

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

.collab-card__body {
  position: relative;
  z-index: 1;
  padding: 1.2rem 0.35rem 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  flex: 1;
}

.collab-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.collab-card__role {
  width: fit-content;
  margin: -0.32rem 0 0.1rem;
  padding: 0.28rem 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--folder-accent);
  background: rgba(234, 90, 91, 0.1);
  border: 1px solid rgba(234, 90, 91, 0.26);
  border-radius: 0;
}

.collab-card__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.55;
  flex: 1;
}

.collab-card__link {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.78rem 0.85rem;
  background: rgba(234, 90, 91, 0.09);
  border: 1px solid rgba(234, 90, 91, 0.28);
  border-radius: 0;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.collab-card__link::before {
  content: "adjunto";
  color: var(--text-muted);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  opacity: 0.76;
}

.collab-card__link:hover {
  color: var(--text);
  background: rgba(234, 90, 91, 0.16);
  border-color: rgba(234, 90, 91, 0.48);
  transform: translateY(-2px);
}

.collab-card__link:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.collab-card__link svg {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

html[data-theme="light"] .collab {
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(0, 102, 254, 0.08), transparent),
    linear-gradient(135deg, rgba(0, 102, 254, 0.04), transparent 42%),
    var(--bg);
}

html[data-theme="light"] .about-origin {
  background:
    radial-gradient(ellipse 42% 28% at 12% 18%, rgba(0, 102, 254, 0.08), transparent),
    linear-gradient(180deg, rgba(0, 102, 254, 0.02), transparent 42%),
    var(--bg);
}

html[data-theme="light"] .page-hero {
  background: #120f14;
}

html[data-theme="light"] .page-hero__title {
  color: #f7f3ef;
}

html[data-theme="light"] .page-hero__title-accent {
  background: none;
  color: var(--coral);
  -webkit-text-fill-color: var(--coral);
}

html[data-theme="light"] .collab .section__title {
  background: none;
  color: var(--text);
  -webkit-text-fill-color: var(--text);
}

html[data-theme="light"] .about-origin .lore__intro {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

html[data-theme="light"] .about-notes .lore-node,
html[data-theme="light"] .about-notes .lore-node--flip {
  border-color: rgba(0, 102, 254, 0.22);
}

html[data-theme="light"] .about-notes .lore-node {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 35%),
    rgba(255, 255, 255, 0.55);
}

html[data-theme="light"] .collab-card {
  --folder-accent: var(--coral);
  border-color: rgba(0, 102, 254, 0.34);
  box-shadow:
    9px 11px 0 rgba(0, 42, 104, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .collab-card:hover {
  border-color: rgba(0, 102, 254, 0.5);
  box-shadow:
    12px 15px 0 rgba(0, 102, 254, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .collab-card__photo {
  border-color: rgba(0, 102, 254, 0.22);
}

html[data-theme="light"] .collab-card::after {
  border-color: rgba(0, 102, 254, 0.2);
}

html[data-theme="light"] .collab-card__role,
html[data-theme="light"] .collab-card__link {
  background: rgba(0, 102, 254, 0.08);
  border-color: rgba(0, 102, 254, 0.22);
}

html[data-theme="light"] .collab-card__link:hover {
  background: rgba(0, 102, 254, 0.13);
  border-color: rgba(0, 102, 254, 0.38);
}

@media (max-width: 640px) {
  .about-notes__grid {
    grid-template-columns: 1fr;
  }

  .about-page-intro__title,
  .about-notes__title {
    max-width: 14ch;
  }

  .about-notes .lore-node:nth-child(2) {
    transform: none;
  }

  .collab__grid {
    gap: 2.25rem;
  }
}
